1
0
mirror of https://github.com/flarum/core.git synced 2025-08-13 20:04:24 +02:00

Compare commits

..

4 Commits

Author SHA1 Message Date
IanM
5bd7e5dfe3 chore: create changelog 2024-10-09 14:00:11 +01:00
IanM
956ac20c4c chore: bump appver 2024-10-09 10:45:06 +01:00
flarum-bot
b7e41ce82f Bundled output for commit c737d7b8f5
Includes transpiled JS/TS, and Typescript declaration files (typings).

[skip ci]
2024-10-08 14:07:09 +00:00
IanM
c737d7b8f5 fix: basicspage broken when no displayname drivers enabled (#4062) 2024-10-08 15:00:43 +01:00
5 changed files with 19 additions and 15 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## [v1.8.7](https://github.com/flarum/framework/compare/v1.8.6...v1.8.7)
### Fixed
* BasicsPage not viewable if only one language pack enabled, and/or `flarum/nicknames` not enabled (https://github.com/flarum/framework/pull/4062)
## [v1.8.6](https://github.com/flarum/framework/compare/v1.8.5...v1.8.6)
### Fixed
* reset admin page save button in catch handler (https://github.com/flarum/framework/pull/3963)

2
framework/core/js/dist/admin.js generated vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -89,9 +89,9 @@ export default class BasicsPage<CustomAttrs extends IPageAttrs = IPageAttrs> ext
90
);
items.add(
'default-locale',
Object.keys(this.localeOptions).length > 1 && (
Object.keys(this.localeOptions).length > 1 &&
items.add(
'default-locale',
<>
{this.buildSettingComponent({
type: 'select',
@@ -104,10 +104,9 @@ export default class BasicsPage<CustomAttrs extends IPageAttrs = IPageAttrs> ext
setting: 'show_language_selector',
label: app.translator.trans('core.admin.basics.show_language_selector_label'),
})}
</>
),
80
);
</>,
80
);
items.add(
'home-page',
@@ -136,9 +135,10 @@ export default class BasicsPage<CustomAttrs extends IPageAttrs = IPageAttrs> ext
60
);
items.add(
'display-name-driver',
Object.keys(this.displayNameOptions).length > 1 &&
Object.keys(this.displayNameOptions).length > 1 &&
items.add(
'display-name-driver',
this.buildSettingComponent({
type: 'select',
setting: 'display_name_driver',
@@ -146,8 +146,8 @@ export default class BasicsPage<CustomAttrs extends IPageAttrs = IPageAttrs> ext
label: app.translator.trans('core.admin.basics.display_name_heading'),
help: app.translator.trans('core.admin.basics.display_name_text'),
}),
50
);
50
);
items.add(
'slug-driver',

View File

@@ -21,7 +21,7 @@ class Application
*
* @var string
*/
const VERSION = '1.8.6';
const VERSION = '1.8.7';
/**
* The IoC container for the Flarum application.