Skip to content

Commit

Permalink
updating the names of the plugin pages
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Dec 16, 2024
1 parent 4d64817 commit 49d646c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions examples/plugins/pages/plugin_page_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

import dash
from dash import html, page_container, register_page
import dash_bootstrap_components as dbc


class PluginPage1:
"""Plugin Page: A SageWorks Plugin Web Interface"""

def __init__(self):
"""Initialize the Plugin Page"""
self.page_name = "Hello World"
self.page_name = "Hello World 1"

def page_setup(self, app: dash.Dash):
"""Required function to set up the page"""
Expand Down
2 changes: 1 addition & 1 deletion examples/plugins/pages/plugin_page_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class PluginPage2:

def __init__(self):
"""Initialize the Plugin Page"""
self.page_name = "Hello World"
self.page_name = "Hello World 2"
self.models_table = AGTable()
self.table_component = None
self.meta = CachedMeta()
Expand Down
2 changes: 1 addition & 1 deletion examples/plugins/pages/plugin_page_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class PluginPage3:

def __init__(self):
"""Initialize the Plugin Page"""
self.page_name = "Hello World"
self.page_name = "Hello World 3"
self.models_table = AGTable()
self.table_component = None
self.model_details = ModelDetails()
Expand Down

0 comments on commit 49d646c

Please sign in to comment.