Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/aidoc/AidocRulesDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@
flat
no-caps
label="Отмена"
style="width: 103px"
class="secondary-btn"
v-close-popup
/>
Expand Down
1 change: 1 addition & 0 deletions src/components/aidoc/AidocVersionSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
no-caps
class="secondary-btn q-mr-sm"
label="Отмена"
style="width: 128px"
v-close-popup
/>
<q-btn
Expand Down
1 change: 1 addition & 0 deletions src/components/dialogs/AIDocDialogs/DeleteDocDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
flat
no-caps
label="Удалить"
style="width: 96px"
class="delete-btn"
@click="deleteDocument"
v-close-popup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
class="secondary-btn"
:class="isAutoSave ? preventClickClass : ''"
label="Отмена"
style="width: 103px"
v-close-popup
@click="isCancel = true"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
class="secondary-btn"
:class="isAutoSave ? preventClickClass : ''"
no-caps
style="width: 94px"
@click.prevent.stop="handleVisibleEditor"
>
Отмена
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
flat
no-caps
label="Выйти"
style="width: 79px"
class="delete-btn"
@click="leaveWorkspace"
v-close-popup
Expand Down
6 changes: 2 additions & 4 deletions src/modules/single-issue/main-issue-info/ui/MainIssueInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,12 @@
@dragover.prevent
/>
</div>
<q-card-actions
v-if="isAdminOrAuthor && !isReadOnlyEditor"
align="right"
>
<q-card-actions v-if="isAdminOrAuthor && !isReadOnlyEditor" align="right">
<q-btn
class="secondary-btn"
:class="isAutoSave ? preventClickClass : ''"
no-caps
style="width: 103px"
@click="handleUndoEdit"
>
Отмена
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
no-caps
class="delete-btn q-mx-xs"
@click="handleDeleteWorkspaceAvatar"
style="width: 99px"
>
Удалить
</q-btn>
Expand Down Expand Up @@ -413,7 +414,6 @@ const EditorTipTapV2 = defineAsyncComponent(
() => import('src/components/editorV2/EditorTipTapV2.vue'),
);

import { isEditorEmpty } from 'src/components/editorV2/utils/editorUtils';
import AvatarImage from 'src/components/AvatarImage.vue';
import EditIcon from 'src/components/icons/EditIcon.vue';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
computedWorkspaceInfo?.current_user_membership?.member_id === user.id
"
no-caps
style="width: 95px"
class="delete-btn q-mr-sm"
@click="isLeaveWorkspace = true"
>
Expand Down