Skip to content

Commit

Permalink
rename additional mods to recommended mods
Browse files Browse the repository at this point in the history
  • Loading branch information
SenkJu committed Dec 16, 2023
1 parent 1ba0474 commit 8614ebb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/main/MainScreen.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
<SelectSetting title="Branch" items={branches.map(e => ({ value: e, text: e }))} bind:value={options.preferredBranch} on:change={requestBuilds} />
<SelectSetting title="Build" items={[{ value: -1, text: "Latest" }, ...builds.filter(e => e.release || options.showNightlyBuilds).map(e => ({ value: e.buildId, text: e.lbVersion + " git-" + e.commitId.substring(0, 7) + " - " + e.date }))]} bind:value={options.preferredBuild} on:change={updateData} />
<ToggleSetting title="Show nightly builds" bind:value={options.showNightlyBuilds} on:change={updateData} />
<SettingWrapper title="Additional mods">
<SettingWrapper title="Recommended mods">
{#each mods as m}
{#if !m.required}
<ToggleSetting title={m.name} bind:value={m.enabled} on:change={updateModStates} />
Expand Down

0 comments on commit 8614ebb

Please sign in to comment.