Skip to content
Snippets Groups Projects
Commit e931d297 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fix FSChangeDecoration param not defined

parent 060ce403
No related branches found
No related tags found
1 merge request!8444fix FSChangeDecoration param not defined
...@@ -148,10 +148,10 @@ App.UI.facilityRedecoration = function() { ...@@ -148,10 +148,10 @@ App.UI.facilityRedecoration = function() {
/** /**
* *
* @param {FC.FutureSociety} FS * @param {FC.FutureSociety} FS
* @param {Array} items * @param {Array} [items]
* @returns {HTMLElement} * @returns {HTMLElement}
*/ */
App.UI.FSChangeDecoration = function(FS, items) { App.UI.FSChangeDecoration = function(FS, items = []) {
const el = document.createElement("div"); const el = document.createElement("div");
el.classList.add("indent"); el.classList.add("indent");
const FSDecoration = FS + "Decoration"; const FSDecoration = FS + "Decoration";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment