Skip to content

Commit

Permalink
fix: show correct text when a mod has been installed
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHillcox committed Jan 7, 2025
1 parent 098215f commit e6f302c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/core/mods/InstallModModal.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<modal :open="open" @closed="close" :close-on-background-click="!installing"
:title="mod ? mod.name : 'Loading...'" sub-title="Select the version you want to install" :external-contents="true"
:title="mod ? mod.name : 'Loading...'" :sub-title="!installing && finishedInstalling ? 'Installed!' : `Select the version you want to install`" :external-contents="true"
>
<modal-body v-if="mod">
<div class="py-6" v-if="!installing && !finishedInstalling">
Expand Down

0 comments on commit e6f302c

Please sign in to comment.