Update app.py
Browse files
app.py
CHANGED
@@ -1171,7 +1171,7 @@ app_page = dmc.MantineProvider(
|
|
1171 |
className="g-0"
|
1172 |
),
|
1173 |
html.Div(id="generation-status", className="mb-3"),
|
1174 |
-
|
1175 |
html.Div(id="competence-output", className="p-3 border rounded", style={"color":"rgb(90, 242, 156)","border-color":"rgb(90, 242, 156)!important","background-color":"rgba(90, 242, 156, 0.2)"}),
|
1176 |
),
|
1177 |
], md=12),
|
@@ -1241,7 +1241,7 @@ app_page = dmc.MantineProvider(
|
|
1241 |
align="left",
|
1242 |
className="g-0"
|
1243 |
),
|
1244 |
-
html.Div(id='output-response', style={"color":"rgb(90, 242, 156)","border-radius":"3px","border":"1px solid rgb(255,255,255)!important","background-color":"rgba(90, 242, 156, 0.2)","padding":"5px"}),
|
1245 |
html.Div(id="notification_wrapper", style={"margin-top":"1rem"}),
|
1246 |
], width=12)
|
1247 |
])
|
@@ -1553,7 +1553,7 @@ app_avid_page = dmc.MantineProvider(
|
|
1553 |
className="g-0"
|
1554 |
),
|
1555 |
html.Div(id="generation-status", className="mb-3"),
|
1556 |
-
|
1557 |
html.Div(id="competence-output", className="p-3 border rounded", style={"color":"rgb(90, 242, 156)","border-color":"rgb(90, 242, 156)!important","background-color":"rgba(90, 242, 156, 0.2)"}),
|
1558 |
),
|
1559 |
], md=12),
|
@@ -1623,7 +1623,7 @@ app_avid_page = dmc.MantineProvider(
|
|
1623 |
align="left",
|
1624 |
className="g-0"
|
1625 |
),
|
1626 |
-
html.Div(id='output-response-avid', style={"color":"rgb(156, 242, 242)","border-radius":"3px","border":"1px solid rgb(255,255,255)!important","background-color":"rgba(156, 242, 242, 0.2)","padding":"5px"}),
|
1627 |
html.Div(id="notification_wrapper-avid", style={"margin-top":"1rem"}),
|
1628 |
], width=12)
|
1629 |
])
|
|
|
1171 |
className="g-0"
|
1172 |
),
|
1173 |
html.Div(id="generation-status", className="mb-3"),
|
1174 |
+
dcc.Loading(
|
1175 |
html.Div(id="competence-output", className="p-3 border rounded", style={"color":"rgb(90, 242, 156)","border-color":"rgb(90, 242, 156)!important","background-color":"rgba(90, 242, 156, 0.2)"}),
|
1176 |
),
|
1177 |
], md=12),
|
|
|
1241 |
align="left",
|
1242 |
className="g-0"
|
1243 |
),
|
1244 |
+
dcc.Loading(html.Div(id='output-response', style={"color":"rgb(90, 242, 156)","border-radius":"3px","border":"1px solid rgb(255,255,255)!important","background-color":"rgba(90, 242, 156, 0.2)","padding":"5px"})),
|
1245 |
html.Div(id="notification_wrapper", style={"margin-top":"1rem"}),
|
1246 |
], width=12)
|
1247 |
])
|
|
|
1553 |
className="g-0"
|
1554 |
),
|
1555 |
html.Div(id="generation-status", className="mb-3"),
|
1556 |
+
dcc.Loading(
|
1557 |
html.Div(id="competence-output", className="p-3 border rounded", style={"color":"rgb(90, 242, 156)","border-color":"rgb(90, 242, 156)!important","background-color":"rgba(90, 242, 156, 0.2)"}),
|
1558 |
),
|
1559 |
], md=12),
|
|
|
1623 |
align="left",
|
1624 |
className="g-0"
|
1625 |
),
|
1626 |
+
dcc.Loading(html.Div(id='output-response-avid', style={"color":"rgb(156, 242, 242)","border-radius":"3px","border":"1px solid rgb(255,255,255)!important","background-color":"rgba(156, 242, 242, 0.2)","padding":"5px"})),
|
1627 |
html.Div(id="notification_wrapper-avid", style={"margin-top":"1rem"}),
|
1628 |
], width=12)
|
1629 |
])
|