make sendToDrive hidable (#493)

Make "sendToDrive" button from share menu hidable.
This commit is contained in:
Vinschni
2023-04-15 22:22:56 +02:00
committed by GitHub
parent 5959db9584
commit bcb5916434
3 changed files with 6 additions and 5 deletions

View File

@@ -614,7 +614,8 @@ export interface GristLoadConfig {
userLocale?: string;
}
export const HideableUiElements = StringUnion("helpCenter", "billing", "templates", "multiSite", "multiAccounts");
export const HideableUiElements = StringUnion("helpCenter", "billing", "templates", "multiSite", "multiAccounts",
"sendToDrive");
export type IHideableUiElement = typeof HideableUiElements.type;
export function shouldHideUiElement(elem: IHideableUiElement): boolean {