Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions ml_peg/app/bulk_crystal/phonons/app_phonons.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

import ase
from dash import Dash, dcc, html
from dash.dcc import Loading

from ml_peg.app import APP_ROOT
from ml_peg.app.base_app import BaseApp
Expand Down Expand Up @@ -161,10 +162,13 @@ def get_app() -> PhononApp:
id=PLOT_CONTAINER_ID,
style={"flex": "1", "minWidth": 0},
),
html.Div(
"Click on a scatter point to view the dispersion plot.",
id=DISPERSION_CONTAINER_ID,
style={"flex": "1", "minWidth": 0},
Loading(
html.Div(
"Click on a scatter point to view the dispersion plot.",
id=DISPERSION_CONTAINER_ID,
style={"flex": "1", "minWidth": 0},
),
type="circle",
),
],
style={
Expand Down