0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-09 20:02:54 +01:00

Remove user fields that can't be interpolated

Dieser Commit ist enthalten in:
angus 2021-03-12 19:50:03 +11:00
Ursprung 2d93313aab
Commit 6a469b2e50
2 geänderte Dateien mit 13 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -5,6 +5,12 @@ import { scheduleOnce } from "@ember/runloop";
import Component from "@ember/component";
import I18n from "I18n";
const excludedUserProperties = [
'avatar',
'profile_background',
'card_background'
];
export default Component.extend({
classNames: 'wizard-text-editor',
barEnabled: true,
@ -39,7 +45,8 @@ export default Component.extend({
@discourseComputed()
userPropertyList() {
return userProperties.map((f) => ` u{${f}}`);
return userProperties.filter((f) => !excludedUserProperties.includes(f))
.map((f) => ` u{${f}}`);
},
@discourseComputed('wizardFields')

Datei anzeigen

@ -444,6 +444,11 @@
.btn {
margin-right: 10px;
color: $primary;
&:hover {
color: $secondary;
}
}
.wizard-editor-gutter-popover {