Skip to content

Commit 1e2c0e6

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent 00e258a commit 1e2c0e6

File tree

12 files changed

+91
-119
lines changed

12 files changed

+91
-119
lines changed

contentcuration/contentcuration/frontend/channelEdit/components/sidePanels/PublishSidePanel.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212
</template>
1313

1414
<template #default>
15-
<div
16-
style="padding: 24px 32px 16px;"
17-
>
15+
<div style="padding: 24px 32px 16px">
1816
<KRadioButtonGroup>
1917
<KRadioButton
2018
:label="modeLive$()"

contentcuration/contentcuration/frontend/channelEdit/components/sidePanels/SubmitToCommunityLibrarySidePanel/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,8 +653,8 @@
653653
.content {
654654
display: flex;
655655
flex-direction: column;
656-
padding: 24px 32px 16px;
657656
gap: 16px;
657+
padding: 24px 32px 16px;
658658
margin-top: -24px;
659659
line-height: 140%;
660660
}

contentcuration/contentcuration/frontend/channelList/views/Channel/components/CatalogFilterPanelContent.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22

3-
<div
3+
<div
44
class="filter-panel-content"
55
:style="contentStyles"
66
>
@@ -111,7 +111,6 @@
111111
import Checkbox from 'shared/views/form/Checkbox';
112112
import HelpTooltip from 'shared/views/HelpTooltip';
113113
import { ContentKindsNames } from 'shared/leUtils/ContentKinds';
114-
115114
116115
const excludedKinds = new Set([ContentKindsNames.TOPIC, ContentKindsNames.H5P]);
117116

contentcuration/contentcuration/frontend/channelList/views/ChannelListIndex.vue

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
</VToolbarTitle>
2929
</VToolbar>
3030

31-
<StudioNavigation
31+
<StudioNavigation
3232
v-else
33-
:tabs="navigationTabs"
33+
:tabs="navigationTabs"
3434
/>
3535

3636
<VContent>
@@ -148,19 +148,19 @@
148148
}),
149149
...mapGetters(['loggedIn']),
150150
...mapGetters('channelList', ['invitations']),
151-
151+
152152
navigationTabs() {
153153
if (!this.loggedIn) return [];
154154
155155
const tabs = [];
156156
157157
this.lists.forEach(listType => {
158158
tabs.push({
159-
id: listType,
159+
id: listType,
160160
label: this.translateConstant(listType),
161161
to: this.getChannelLink(listType),
162162
badgeValue: this.invitationsByListCounts[listType] || 0,
163-
analyticsLabel: ListTypeToAnalyticsLabel[listType]
163+
analyticsLabel: ListTypeToAnalyticsLabel[listType],
164164
});
165165
});
166166
@@ -169,15 +169,15 @@
169169
label: this.$tr('catalog'),
170170
to: this.catalogLink,
171171
badgeValue: 0,
172-
analyticsLabel: 'PUBLIC'
172+
analyticsLabel: 'PUBLIC',
173173
});
174174
175175
tabs.push({
176176
id: CHANNEL_SETS,
177177
label: this.$tr('channelSets'),
178178
to: this.channelSetLink,
179179
badgeValue: 0,
180-
analyticsLabel: 'CHANNEL_SETS'
180+
analyticsLabel: 'CHANNEL_SETS',
181181
});
182182
183183
return tabs;
@@ -292,7 +292,6 @@
292292
this.updateTabTitle(title);
293293
}
294294
},
295-
296295
},
297296
$trs: {
298297
channelSets: 'Collections',
@@ -350,4 +349,4 @@
350349
height: 100%;
351350
}
352351
353-
</style>
352+
</style>

contentcuration/contentcuration/frontend/shared/views/SidePanelModal/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<div
2727
class="header-content"
2828
:style="{
29-
flexDirection: headerFlexDirection,
29+
flexDirection: headerFlexDirection,
3030
}"
3131
>
3232
<div style="overflow: hidden">
@@ -110,7 +110,7 @@
110110
default: null,
111111
validator: value => ['left', 'right'].includes(value),
112112
},
113-
113+
114114
/* Optionally override the default width of the side panel with valid CSS value */
115115
sidePanelWidth: {
116116
type: String,

contentcuration/contentcuration/frontend/shared/views/SkipNavigationLink.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@
8686
}
8787
}
8888
89-
</style>
89+
</style>

0 commit comments

Comments
 (0)