SaveDashboard: remove feature flag for save drawer (#48462)

This commit is contained in:
Ryan McKinley
2022-05-02 09:29:22 -07:00
committed by GitHub
parent da1d34e83d
commit a8f3b17262
13 changed files with 19 additions and 198 deletions

View File

@@ -8,7 +8,7 @@ import { ButtonGroup, ModalsController, ToolbarButton, PageToolbar, useForceUpda
import config from 'app/core/config';
import { toggleKioskMode } from 'app/core/navigation/kiosk';
import { DashboardCommentsModal } from 'app/features/dashboard/components/DashboardComments/DashboardCommentsModal';
import { SaveDashboardProxy } from 'app/features/dashboard/components/SaveDashboard/SaveDashboardProxy';
import { SaveDashboardDrawer } from 'app/features/dashboard/components/SaveDashboard/SaveDashboardDrawer';
import { ShareModal } from 'app/features/dashboard/components/ShareModal';
import { playlistSrv } from 'app/features/playlist/PlaylistSrv';
import { updateTimeZoneForSession } from 'app/features/profile/state/reducers';
@@ -225,7 +225,7 @@ export const DashNav = React.memo<Props>((props) => {
tooltip="Save dashboard"
icon="save"
onClick={() => {
showModal(SaveDashboardProxy, {
showModal(SaveDashboardDrawer, {
dashboard,
onDismiss: hideModal,
});