Fix: Saved group hover (#5520)
This commit is contained in:
@@ -17,7 +17,8 @@
|
||||
/>
|
||||
<template #title-actions>
|
||||
<div
|
||||
class="flex gap-0.5 items-center lg:opacity-0 lg:group-hover/disclosure:opacity-100"
|
||||
class="flex gap-0.5 items-center lg:group-hover/disclosure:opacity-100"
|
||||
:class="{ 'lg:opacity-0': !showMenu }"
|
||||
@click.stop
|
||||
>
|
||||
<LayoutMenu
|
||||
|
||||
@@ -4928,14 +4928,21 @@ export type UserGendoAiCredits = {
|
||||
|
||||
export type UserMeta = {
|
||||
__typename?: 'UserMeta';
|
||||
flag: Scalars['Boolean']['output'];
|
||||
intelligenceCommunityStandUpBannerDismissed: Scalars['Boolean']['output'];
|
||||
legacyProjectsExplainerCollapsed: Scalars['Boolean']['output'];
|
||||
newWorkspaceExplainerDismissed: Scalars['Boolean']['output'];
|
||||
speckleConBannerDismissed: Scalars['Boolean']['output'];
|
||||
};
|
||||
|
||||
|
||||
export type UserMetaFlagArgs = {
|
||||
key: Scalars['String']['input'];
|
||||
};
|
||||
|
||||
export type UserMetaMutations = {
|
||||
__typename?: 'UserMetaMutations';
|
||||
setFlag: Scalars['Boolean']['output'];
|
||||
setIntelligenceCommunityStandUpBannerDismissed: Scalars['Boolean']['output'];
|
||||
setLegacyProjectsExplainerCollapsed: Scalars['Boolean']['output'];
|
||||
setNewWorkspaceExplainerDismissed: Scalars['Boolean']['output'];
|
||||
@@ -4943,6 +4950,12 @@ export type UserMetaMutations = {
|
||||
};
|
||||
|
||||
|
||||
export type UserMetaMutationsSetFlagArgs = {
|
||||
key: Scalars['String']['input'];
|
||||
value: Scalars['Boolean']['input'];
|
||||
};
|
||||
|
||||
|
||||
export type UserMetaMutationsSetIntelligenceCommunityStandUpBannerDismissedArgs = {
|
||||
value: Scalars['Boolean']['input'];
|
||||
};
|
||||
@@ -10535,12 +10548,14 @@ export type UserGendoAiCreditsFieldArgs = {
|
||||
used: {},
|
||||
}
|
||||
export type UserMetaFieldArgs = {
|
||||
flag: UserMetaFlagArgs,
|
||||
intelligenceCommunityStandUpBannerDismissed: {},
|
||||
legacyProjectsExplainerCollapsed: {},
|
||||
newWorkspaceExplainerDismissed: {},
|
||||
speckleConBannerDismissed: {},
|
||||
}
|
||||
export type UserMetaMutationsFieldArgs = {
|
||||
setFlag: UserMetaMutationsSetFlagArgs,
|
||||
setIntelligenceCommunityStandUpBannerDismissed: UserMetaMutationsSetIntelligenceCommunityStandUpBannerDismissedArgs,
|
||||
setLegacyProjectsExplainerCollapsed: UserMetaMutationsSetLegacyProjectsExplainerCollapsedArgs,
|
||||
setNewWorkspaceExplainerDismissed: UserMetaMutationsSetNewWorkspaceExplainerDismissedArgs,
|
||||
|
||||
Reference in New Issue
Block a user