Skip to content

Commit

Permalink
feat: Fix Vuetify BTN CSS Class - MEED-7475 - Meeds-io/MIPs#151
Browse files Browse the repository at this point in the history
This change ensure to use a boolean value for a Javascript variable which has been made string while should be of type boolean.
  • Loading branch information
boubaker authored and exo-swf committed Oct 7, 2024
1 parent 3d668b3 commit 1300b39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default {
originalLimitToFetch: 0,
term: '',
spacesURL: `${eXo.env.portal.context}/${eXo.env.portal.metaPortalName}/spaces/`,
isExternal: eXo.env.portal.isExternal === 'true',
isExternal: eXo.env.portal.isExternal === true,
};
},
computed: {
Expand Down

0 comments on commit 1300b39

Please sign in to comment.