Skip to content

Commit

Permalink
resolved the invalid props error and resolve the minor issues using T…
Browse files Browse the repository at this point in the history
…extTruncatorCss
  • Loading branch information
Pursottam6003 committed Apr 27, 2023
1 parent 6214dcc commit 380327d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<TextTruncatorCss
v-if="!windowIsSmall"
:text="description"
:maxHeight="80"
:maxLines="3"
class="description"
/>
<div>
Expand All @@ -60,7 +60,7 @@
import CoachContentLabel from 'kolibri.coreVue.components.CoachContentLabel';
import ContentIcon from 'kolibri.coreVue.components.ContentIcon';
import { validateLinkObject, validateContentNodeKind } from 'kolibri.utils.validators';
import TextTruncatorCss from 'kolibri.coreVue.components.TextTruncatorCss'; //update
import TextTruncatorCss from 'kolibri.coreVue.components.TextTruncatorCss';
import responsiveWindowMixin from 'kolibri.coreVue.mixins.responsiveWindowMixin';
import CardThumbnail from './CardThumbnail';
Expand Down
4 changes: 2 additions & 2 deletions kolibri/plugins/learn/assets/src/views/AlsoInThis.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<TextTruncatorCss
class="content-title"
:text="content.title"
:maxHeight="72"
:maxLines="2"
/>
<TimeDuration
v-if="content.duration"
Expand Down Expand Up @@ -93,7 +93,7 @@
<script>
import isBoolean from 'lodash/isBoolean';
import TextTruncatorCss from 'kolibri.coreVue.components.TextTruncatorCss'; //update
import TextTruncatorCss from 'kolibri.coreVue.components.TextTruncatorCss';
import TimeDuration from 'kolibri.coreVue.components.TimeDuration';
import KResponsiveWindowMixin from 'kolibri-design-system/lib/KResponsiveWindowMixin';
import MissingResourceAlert from 'kolibri-common/components/MissingResourceAlert';
Expand Down

0 comments on commit 380327d

Please sign in to comment.