Procházet zdrojové kódy

Dashboards now refresh the dashboard name when updated from the settings.

Kenric Nugteren před 6 měsíci
rodič
revize
a5e53699e4

+ 1 - 0
prs.desktop/Dashboards/CustomDashboard.xaml.cs

@@ -74,6 +74,7 @@ public partial class CustomDashboardWidget : UserControl, IDashboardWidget<Custo
             return;
         }
 
+        DataPresenter.IsPreview = false;
         DataPresenter.DataComponent = DataComponent;
         var control = DataPresenter.Setup();
 

+ 1 - 0
prs.desktop/Dashboards/UtilityDashboard.xaml.cs

@@ -636,6 +636,7 @@ namespace PRSDesktop
             {
                 grid.ClearElementTypesAndActions();
                 AddCustomDashboardsToGrid(grid, customDashboards);
+                grid.Refresh();
             }
         }
         private void AddCustomDashboardsToGrid(DynamicFormDesignGrid grid, List<CustomDashboard> customDashboards)