Merge branch 'bugfix/rc-2.5.0' of github.com:ONLYOFFICE/DocSpace-client into bugfix/rc-2.5.0

This commit is contained in:
Timofey Boyko 2024-03-06 12:37:19 +03:00
commit de49f1f378
2 changed files with 2 additions and 0 deletions

View File

@ -149,6 +149,7 @@ export const Tags: FC<TagsProps> = ({
{...tags}
key={tag.label}
tag={tag.label}
icon={tag.icon}
advancedOptions={tag.advancedOptions}
tagMaxWidth={tag.maxWidth}
isNewTag={false}

View File

@ -11,6 +11,7 @@ export type TagType = {
/** Accepts the tag styles as disabled and disables clicking */
isDisabled?: boolean;
roomType?: number;
icon?: string;
};
export interface TagsProps {