Skip to content

Commit

Permalink
Fix for Mantime Provider
Browse files Browse the repository at this point in the history
  • Loading branch information
agvarghe committed Jun 26, 2024
1 parent 264b213 commit fc998f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
PORTAL_DATABASE_TYPE=sqlite
DATABASE_LOCATION=${APPDATA}/Ansys/portal/{{ cookiecutter.__solution_name_slug }}
PORTAL_PROJECT_DATABASE_LOCATION=${DATABASE_LOCATION}/projects.db
PORTAL_PROJECT_DATABASE_LOCATION=${DATABASE_LOCATION}/projects.db
REACT_VERSION="18.2.0"
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import tempfile

import dash_bootstrap_components as dbc
import dash_mantine_components as dmc
from dash_extensions.enrich import DashProxy, MultiplexerTransform, NoOutputTransform, TriggerTransform
import dash_uploader as du

Expand All @@ -24,4 +25,4 @@
# dash uploader configuration
from ansys.solutions.{{ cookiecutter.__solution_name_slug }}.ui.pages.page import layout

app.layout = layout
app.layout = dmc.MantineProvider(layout)

0 comments on commit fc998f9

Please sign in to comment.