Skip to content

Commit

Permalink
Reserve details tab for development only.
Browse files Browse the repository at this point in the history
  • Loading branch information
jameseaster committed Oct 4, 2024
1 parent 0753205 commit 546ae33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/CredentialDetailsViews.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ export default {
const slideNumber = ref(1);
const tab = ref('highlights');
const fullscreen = ref(false);
const showDetails = ref(true);
const showDisplays = ref(false);
const showHighlights = ref(false);
const credentialImages = reactive([]);
const showDetails = ref(process.env.NODE_ENV === 'development');
// Select initial tab
onMounted(() => {
Expand Down

0 comments on commit 546ae33

Please sign in to comment.