Add note to latest update (#400)
This commit is contained in:
parent
bc3f716f8c
commit
cac2613e9e
4 changed files with 11 additions and 11 deletions
|
|
@ -88,7 +88,7 @@ const UpdatesPage = () => {
|
|||
uncappedItems={{
|
||||
character: ['3040167000', '3040166000'],
|
||||
}}
|
||||
numNotes={1}
|
||||
numNotes={2}
|
||||
/>
|
||||
<ContentUpdate
|
||||
version="2023-12L"
|
||||
|
|
|
|||
|
|
@ -21,7 +21,8 @@
|
|||
"versions": {
|
||||
"2024-01U": {
|
||||
"features": [
|
||||
"Fixed a bug that prevented logged out users from creating teams if they started from the Character or Summon tabs"
|
||||
"Fixed a bug that prevented logged out users from creating teams if they started from the Character or Summon tabs",
|
||||
"Fixed a bug that prevented filtering the Teams, Saved, and Profile pages without selecting a filter twice"
|
||||
]
|
||||
},
|
||||
"2023-12U2": {
|
||||
|
|
|
|||
|
|
@ -21,7 +21,8 @@
|
|||
"versions": {
|
||||
"2024-01U": {
|
||||
"features": [
|
||||
"ログアウトしたままのユーザーがキャラクターまたは召喚石のタブから編成を作成できない不具合を修正"
|
||||
"ログアウトしたままのユーザーがキャラクターまたは召喚石のタブから編成を作成できない不具合を修正",
|
||||
"編成一覧、保存した編成、プロフィールのページでフィルターを2回選択しないとフィルターが機能しない不具合を修正"
|
||||
]
|
||||
},
|
||||
"2023-12U2": {
|
||||
|
|
|
|||
|
|
@ -39,16 +39,14 @@ export const setHeaders = (
|
|||
}
|
||||
|
||||
export const storeEditKey = (id: string, key: string) => {
|
||||
ls(id, key)
|
||||
const stored = set(id, key)
|
||||
if (stored) setEditKey(id)
|
||||
return stored
|
||||
}
|
||||
|
||||
export const setEditKey = (id: string, user?: User) => {
|
||||
if (!user) {
|
||||
export const setEditKey = (id: string) => {
|
||||
const edit_key = get<string>(id)
|
||||
axios.defaults.headers.common['X-Edit-Key'] = edit_key
|
||||
} else {
|
||||
unsetEditKey()
|
||||
}
|
||||
}
|
||||
|
||||
export const unsetEditKey = () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue