Skip to content

Commit 02dd1fa

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent 5600ff2 commit 02dd1fa

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

contentcuration/contentcuration/frontend/administration/pages/Users/EmailUsersDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@
131131
<script>
132132
133133
import { mapActions, mapGetters } from 'vuex';
134+
import StudioChip from 'shared/views/StudioChip';
134135
import ExpandableList from 'shared/views/ExpandableList';
135136
import { generateFormMixin } from 'shared/mixins';
136-
import StudioChip from 'shared/views/StudioChip';
137137
138138
const formMixin = generateFormMixin({
139139
subject: { required: true },

contentcuration/contentcuration/frontend/shared/views/__tests__/StudioDetailsRow.spec.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ describe('StudioDetailsRow', () => {
6161
});
6262

6363
expect(screen.getByTestId('help-tooltip')).toBeInTheDocument();
64-
expect(screen.getByText('Resources for coaches are only visible to coaches in Kolibri'))
65-
.toBeInTheDocument();
64+
expect(
65+
screen.getByText('Resources for coaches are only visible to coaches in Kolibri'),
66+
).toBeInTheDocument();
6667
});
6768

6869
it('does not display HelpTooltip when definition is not provided', () => {

contentcuration/contentcuration/frontend/shared/views/channel/ChannelDetailsModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
<script>
6060
6161
import { mapActions, mapGetters } from 'vuex';
62-
import { routerMixin } from 'shared/mixins';
6362
import { channelExportMixin } from './mixins';
63+
import { routerMixin } from 'shared/mixins';
6464
import FullscreenModal from 'shared/views/FullscreenModal';
6565
import LoadingText from 'shared/views/LoadingText';
6666
import StudioDetailsPanel from 'shared/views/details/StudioDetailsPanel.vue';

contentcuration/contentcuration/frontend/shared/views/details/StudioDetailsPanel.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</template>
2525
</KImg>
2626
</div>
27-
<br>
27+
<br >
2828
<h1
2929
class="notranslate"
3030
dir="auto"
@@ -37,7 +37,7 @@
3737
>
3838
{{ _details.description }}
3939
</p>
40-
<br>
40+
<br >
4141

4242
<template v-if="isChannel">
4343
<StudioDetailsRow
@@ -686,8 +686,8 @@
686686
687687
.channel-name {
688688
padding: 0 16px;
689-
font-weight: bold;
690689
font-size: 16px;
690+
font-weight: bold;
691691
}
692692
693693
.channel-link {
@@ -717,8 +717,8 @@
717717
display: block;
718718
margin-top: 24px;
719719
margin-bottom: 8px;
720-
font-weight: bold;
721720
font-size: 14px;
721+
font-weight: bold;
722722
line-height: 20px;
723723
color: var(--v-grey-darken3);
724724
}
@@ -727,8 +727,8 @@
727727
display: grid;
728728
grid-template-columns: 1fr;
729729
gap: 16px;
730-
margin: 16px 0;
731730
padding-top: 4px;
731+
margin: 16px 0;
732732
733733
@media (min-width: 600px) {
734734
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
@@ -743,9 +743,9 @@
743743
display: flex;
744744
flex-direction: column;
745745
height: 100%;
746+
overflow: hidden;
746747
border: 1px solid var(--v-grey-lighten3, #e0e0e0);
747748
border-radius: 4px;
748-
overflow: hidden;
749749
750750
> div:last-child {
751751
padding: 12px;

contentcuration/contentcuration/frontend/shared/views/details/StudioDetailsRow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@
9595
}
9696
9797
.label-text {
98-
font-weight: bold;
9998
font-size: 14px;
99+
font-weight: bold;
100100
line-height: 20px;
101101
color: var(--v-grey-darken3);
102102
vertical-align: middle;

0 commit comments

Comments
 (0)