mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 01:10:49 +01:00
Avoiding accessing undefined mentionValues (#26461)
The `window.config.mentionValues` might be undefined: ``` {{if or .Participants .Assignees .MentionableTeams}} mentionValues: ... {{end}} ```
This commit is contained in:
parent
2fc0eb913c
commit
74930b1ccd
2 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ function makeCollections({mentions, emoji}) {
|
||||||
|
|
||||||
if (mentions) {
|
if (mentions) {
|
||||||
collections.push({
|
collections.push({
|
||||||
values: window.config.mentionValues,
|
values: window.config.mentionValues ?? [],
|
||||||
requireLeadingSpace: true,
|
requireLeadingSpace: true,
|
||||||
menuItemTemplate: (item) => {
|
menuItemTemplate: (item) => {
|
||||||
return `
|
return `
|
||||||
|
|
|
@ -32,7 +32,7 @@ export function matchMention(queryText) {
|
||||||
|
|
||||||
// results is a map of weights, lower is better
|
// results is a map of weights, lower is better
|
||||||
const results = new Map();
|
const results = new Map();
|
||||||
for (const obj of window.config.mentionValues) {
|
for (const obj of window.config.mentionValues ?? []) {
|
||||||
const index = obj.key.toLowerCase().indexOf(query);
|
const index = obj.key.toLowerCase().indexOf(query);
|
||||||
if (index === -1) continue;
|
if (index === -1) continue;
|
||||||
const existing = results.get(obj);
|
const existing = results.get(obj);
|
||||||
|
|
Loading…
Reference in a new issue