mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
Squashed commit of the following:
commit5b2f90356bAuthor: SabreCat <sabrecat@gmail.com> Date: Fri Dec 15 16:19:02 2023 -0600 fix(migration): full URL commita2962c0d10Author: SabreCat <sabrecat@gmail.com> Date: Fri Dec 15 15:57:21 2023 -0600 feat(migration): add birthday notif commit9da8e39dd0Author: CuriousMagpie <eilatan@gmail.com> Date: Fri Dec 15 12:32:25 2023 -0500 feat(script): awards 2024 Habitica birthday robes commit7de6b80ee6Author: CuriousMagpie <eilatan@gmail.com> Date: Thu Dec 14 13:11:07 2023 -0500 feat(content): add Habitica birthday item commit1bb95f5867Author: CuriousMagpie <eilatan@gmail.com> Date: Thu Dec 14 11:43:12 2023 -0500 fix(dates): fix availability dates to canonical commit8e7f49f253Author: CuriousMagpie <eilatan@gmail.com> Date: Thu Dec 14 11:37:44 2023 -0500 feat(content): make 2024 default backgroumd, fix errors commitacc30f044eAuthor: CuriousMagpie <eilatan@gmail.com> Date: Wed Dec 13 16:53:33 2023 -0500 feat(content): the rest of the January content commit6a5e45c6d0Author: CuriousMagpie <eilatan@gmail.com> Date: Wed Dec 13 16:49:33 2023 -0500 feat(content): January content
This commit is contained in:
@@ -121,7 +121,7 @@
|
||||
v-if="editing"
|
||||
class="menu-container col-2"
|
||||
:class="{active: activeTopPage === 'backgrounds'}"
|
||||
@click="changeTopPage('backgrounds', '2023')"
|
||||
@click="changeTopPage('backgrounds', '2024')"
|
||||
>
|
||||
<div class="menu-item">
|
||||
<div
|
||||
@@ -208,13 +208,13 @@
|
||||
<div
|
||||
class="row text-center title-row"
|
||||
>
|
||||
<strong>{{ backgroundShopSets[2].text }}</strong>
|
||||
<strong>{{ backgroundShopSets[1].text }}</strong>
|
||||
</div>
|
||||
<div
|
||||
class="row title-row"
|
||||
>
|
||||
<div
|
||||
v-for="bg in backgroundShopSets[2].items"
|
||||
v-for="bg in backgroundShopSets[1].items"
|
||||
:id="bg.key"
|
||||
:key="bg.key"
|
||||
class="col-4 text-center customize-option background-button"
|
||||
@@ -1237,7 +1237,7 @@ export default {
|
||||
},
|
||||
],
|
||||
|
||||
bgSubMenuItems: ['2023', '2022', '2021', '2020', '2019', '2018', '2017', '2016', '2015', '2014'].map(y => ({
|
||||
bgSubMenuItems: ['2024', '2023', '2022', '2021', '2020', '2019', '2018', '2017', '2016', '2015', '2014'].map(y => ({
|
||||
id: y,
|
||||
label: y,
|
||||
})),
|
||||
@@ -1267,6 +1267,7 @@ export default {
|
||||
2021: [],
|
||||
2022: [],
|
||||
2023: [],
|
||||
2024: [],
|
||||
};
|
||||
|
||||
// Hack to force update for now until we restructure the data
|
||||
|
||||
Reference in New Issue
Block a user