Skip to content

Commit ddb378e

Browse files
AerunDevAerunPalbolsky
authored
Prepare 2.9.0 release to come (#722)
Co-authored-by: Aerun <projetforeteternelle@gmail.com> Co-authored-by: Palbolsky <palbolsky@gmail.com>
1 parent 135e838 commit ddb378e

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pokemon-studio",
33
"productName": "Pokémon Studio",
44
"description": "Pokémon Studio is a monster taming game editor which helps you to bring your ideas to life, in just a few clicks.",
5-
"version": "2.8.2",
5+
"version": "2.9.0",
66
"main": "./.vite/build/index.js",
77
"license": "SEE LICENSE IN LICENSE.md",
88
"author": {

psdk-binaries/pokemonsdk

Submodule pokemonsdk updated from 454404c to 406792d

src/views/components/database/quest/editors/goals/QuestGoalBeatPokemon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const QuestGoalBeatPokemon = ({ objective, refs, checkIsValid }: QuestGoa
2626
/>
2727
</InputWithLeftLabelContainer>
2828
<InputWithLeftLabelContainer>
29-
<Label htmlFor="hidden-by-default">{t('database_quests:hidden_default')}</Label>
29+
<Label htmlFor="hidden-by-default">{t('hidden_default')}</Label>
3030
<Toggle
3131
ref={refs.hiddenByDefaultRef}
3232
name="hidden-by-default"

src/views/components/database/quest/editors/goals/QuestGoalObtainItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const QuestGoalObtainItem = ({ objective, refs, checkIsValid }: QuestGoal
2626
/>
2727
</InputWithLeftLabelContainer>
2828
<InputWithLeftLabelContainer>
29-
<Label htmlFor="hidden-by-default">{t('database_quests:hidden_default')}</Label>
29+
<Label htmlFor="hidden-by-default">{t('hidden_default')}</Label>
3030
<Toggle
3131
ref={refs.hiddenByDefaultRef}
3232
name="hidden-by-default"

src/views/components/database/quest/tables/RenderEarning.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export const RenderEarning = ({ earning, onClickEdit, onClickDelete }: RenderEar
9999
<span onClick={isClickable ? () => shortcutToTheRightPlace() : undefined} className={isClickable ? 'clickable' : undefined}>
100100
{earningText}
101101
</span>
102-
<EarningCategory category={categoryEarning[earning.earningMethodName]}>{t(categoryEarning[earning.earningMethodName])}</EarningCategory>
102+
<EarningCategory category={categoryEarning[earning.earningMethodName]}>{t(earning.earningMethodName)}</EarningCategory>
103103
<div className="buttons">
104104
<EditButtonOnlyIcon size="s" color={theme.colors.primaryBase} onClick={onClickEdit} />
105105
<DeleteButtonOnlyIcon size="s" onClick={onClickDelete} />

0 commit comments

Comments
 (0)