Public Dashboards: Renaming PubdashFooter (#58137)

This commit is contained in:
lean.dev
2022-11-03 10:12:27 -03:00
committed by GitHub
parent d45fe6e25c
commit 49e36c5c05
2 changed files with 8 additions and 8 deletions

View File

@@ -28,7 +28,7 @@ import { DashboardPrompt } from '../components/DashboardPrompt/DashboardPrompt';
import { DashboardSettings } from '../components/DashboardSettings';
import { PanelInspector } from '../components/Inspector/PanelInspector';
import { PanelEditor } from '../components/PanelEditor/PanelEditor';
import { PubdashFooter } from '../components/PubdashFooter/PubdashFooter';
import { PublicDashboardFooter } from '../components/PublicDashboardFooter/PublicDashboardsFooter';
import { SubMenu } from '../components/SubMenu/SubMenu';
import { DashboardGrid } from '../dashgrid/DashboardGrid';
import { liveTimer } from '../dashgrid/liveTimer';
@@ -415,7 +415,7 @@ export class UnthemedDashboardPage extends PureComponent<Props, State> {
)}
{
// TODO: assess if there are other places where we may want a footer, which may reveal a better place to add this
isPublic && <PubdashFooter />
isPublic && <PublicDashboardFooter />
}
</>
);