Skip to content

Commit

Permalink
Fix plot-info.vue (#7488)
Browse files Browse the repository at this point in the history
* Fix plot-info.vue
Remove scoped.

* Really fix rendering of the anime tabs.
  • Loading branch information
p0psicles authored and medariox committed Dec 15, 2019
1 parent 77d51a2 commit 3eb3cc4
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 60 deletions.
2 changes: 1 addition & 1 deletion themes-default/slim/src/components/helpers/plot-info.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default {
}
};
</script>
<style scoped>
<style>
.plotInfo {
cursor: help;
float: right;
Expand Down
6 changes: 3 additions & 3 deletions themes-default/slim/views/home.mako
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
Filter(s)</button>
</span>&nbsp;
</template>
Layout:
Layout:
<select v-model="layout" name="layout" class="form-control form-control-inline input-sm show-layout">
<option :value="option.value" v-for="option in layoutOptions" :key="option.value">{{ option.text }}</option>
</select>
Expand All @@ -78,7 +78,7 @@
<div class="row">
<div class="col-md-12">
<!-- Split in tabs -->
<div id="showTabs" v-if="stateLayout.animeSplitHome && stateLayout.animeSplitHomeInTabs">
<div id="showTabs" v-show="stateLayout.animeSplitHome && stateLayout.animeSplitHomeInTabs">
<!-- Nav tabs -->
<ul>
% for cur_show_list in show_lists:
Expand All @@ -93,7 +93,7 @@
% endif
</div><!-- #showTabPanes -->
</div> <!-- #showTabs -->
<template v-else>
<template v-show="!stateLayout.animeSplitHome || !stateLayout.animeSplitHomeInTabs">
## Checking with Mako as well, so we don't import the home page layout multiple times.
% if not (app.ANIME_SPLIT_HOME and app.ANIME_SPLIT_HOME_IN_TABS):
<%include file="/partials/home/${app.HOME_LAYOUT}.mako"/>
Expand Down
50 changes: 25 additions & 25 deletions themes/dark/assets/js/medusa-runtime.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions themes/dark/templates/home.mako

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3eb3cc4

Please sign in to comment.