Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsOnlyBinary committed Oct 19, 2023
1 parent 66cb901 commit 044d3af
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/components/ChannelBanlist.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<div v-else-if="is_refreshing">
{{ $t('bans_refreshing') }}
</div>
<div v-else class="kiwi-channelbanlist-empty">
<div v-else>
{{ $t('bans_nobody') }}
</div>
</form>
Expand Down
3 changes: 1 addition & 2 deletions src/components/ChannelInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function generateComputedModeWithParam(mode) {
export default {
props: ['buffer'],
data: function data() {
data() {
return {
showPrevTopics: false,
};
Expand Down Expand Up @@ -159,5 +159,4 @@ export default {
margin-top: 0;
margin-left: 6px;
}
</style>
5 changes: 5 additions & 0 deletions src/components/ChannelInvitelist.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,12 @@
<div v-else-if="is_refreshing">
{{ $t('invites_refreshing') }}
</div>
<div v-else>
{{ $t('invites_nobody') }}
</div>
</form>
</template>

<script>
'kiwi public';
Expand Down Expand Up @@ -339,6 +343,7 @@ export default {
},
};
</script>

<style lang="less">
.kiwi-invitelist {
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Nicklist.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default {
NicklistUser,
},
props: ['network', 'buffer', 'sidebarState'],
data: function data() {
data() {
return {
userbox_user: null,
user_filter: '',
Expand Down
1 change: 0 additions & 1 deletion src/components/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,5 +202,4 @@ export default {
max-width: 100%;
}
}
</style>
2 changes: 0 additions & 2 deletions src/components/SidebarAboutBuffer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@
</template>

<script>
'kiwi public';
import GlobalApi from '@/libs/GlobalApi';
Expand Down Expand Up @@ -193,7 +192,6 @@ export default {
</script>

<style lang="less">
/* Adjust the sidebars width when this component is in view */
.kiwi-sidebar.kiwi-sidebar-section-about {
max-width: 300px;
Expand Down
1 change: 0 additions & 1 deletion src/components/UserBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@
</template>

<script>
'kiwi public';
import * as ipRegex from 'ip-regex';
Expand Down

0 comments on commit 044d3af

Please sign in to comment.