+
{
-
-
-
- {{ selectedChanges.size }} of {{ changes.workflows.length }}
-
- workflows selected
-
-
-
-
- Title
-
-
-
-
- {{ i18n.baseText('workflows.filters.active') }}
-
- {{ i18n.baseText('workflows.filters.active.reset') }}
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Title
+
+
+
+
+ {{ filtersActiveText }}
+
-
-
+
+
+
+
+
-
- Deleted Workflow:
+
+
+
+ Deleted Workflow:
+
+
+ Deleted Credential:
+
+
+ Deleted Folders:
+
+ {{ file.name || file.id }}
+
+
+ {{ file.name }}
+
+
+ {{ renderUpdatedAt(file) }}
+
-
- Deleted Credential:
+
+
+ Current workflow
+
+
+ {{ getStatusText(file.status) }}
+
-
- Deleted Folders:
-
- {{ file.name || file.id }}
-
-
- {{ file.name }}
-
-
- {{ renderUpdatedAt(file) }}
-
-
-
-
- Current workflow
-
-
- {{ getStatusText(file.status) }}
-
-
-
-
-
-
+
+
+
+
+
+
- Changes to credentials, variables, tags and folders
+ Changes to variables, tags and folders
{{ title }}
@@ -577,7 +689,7 @@ watch(refDebounced(search, 500), (term) => {
@click="commitAndPush"
>
{{ i18n.baseText('settings.sourceControl.modals.push.buttons.save') }}
- {{ selectedChanges.size ? `(${selectedChanges.size})` : undefined }}
+ {{ selectedCount ? `(${selectedCount})` : undefined }}
@@ -673,11 +785,45 @@ watch(refDebounced(search, 500), (term) => {
display: flex;
flex-direction: column;
border: var(--border-base);
- border-radius: 8px;
+ border-top-right-radius: 8px;
+ border-bottom-right-radius: 8px;
}
.tableHeader {
border-bottom: var(--border-base);
padding: 10px 16px;
}
+
+.tabs {
+ display: flex;
+ flex-direction: column;
+ gap: 4px;
+ width: 165px;
+ padding: var(--spacing-2xs);
+ border: var(--border-base);
+ border-right: 0;
+ border-top-left-radius: 8px;
+ border-bottom-left-radius: 8px;
+}
+
+.tab {
+ color: var(--color-text-base);
+ background-color: transparent;
+ border: 1px solid transparent;
+ padding: var(--spacing-2xs);
+ cursor: pointer;
+ border-radius: 4px;
+ text-align: left;
+ display: flex;
+ flex-direction: column;
+ gap: 2px;
+ &:hover {
+ border-color: var(--color-background-base);
+ }
+}
+
+.tabActive {
+ background-color: var(--color-background-base);
+ color: var(--color-text-dark);
+}