Skip to content

Commit

Permalink
Merge pull request #165 from githubkoma/patch-1
Browse files Browse the repository at this point in the history
missing commas in #158 and #78
  • Loading branch information
pawelrojek authored Nov 13, 2021
2 parents 97ef98f + 4c88e51 commit e308dfe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions drawio/controller/settingscontroller.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function index() {
"drawioOfflineMode" => $this->config->GetOfflineMode(),
"drawioTheme" => $this->config->GetTheme(),
"drawioLang" => $this->config->GetLang(),
"drawioAutosave" => $this->config->GetAutosave()
"drawioAutosave" => $this->config->GetAutosave(),
"drawioLibraries" => $this->config->GetLibraries()
];
return new TemplateResponse($this->appName, "settings", $data, "blank");
Expand Down Expand Up @@ -105,7 +105,7 @@ public function settings()
"offlineMode" => $this->config->GetOfflineMode(),
"theme" => $this->config->GetTheme(),
"lang" => $this->config->GetLang(),
"drawioAutosave" =>$this->config->GetAutosave()
"drawioAutosave" =>$this->config->GetAutosave(),
"drawioLibraries" =>$this->config->GetLibraries()
];
}
Expand Down
2 changes: 1 addition & 1 deletion drawio/js/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
$("#theme").val(response.theme);
$("#lang").val(response.lang);
$("#drawioAutosave").val(response.drawioAutosave);
$("#drawioLibraries").val(response.libraries);
$("#drawioLibraries").val(response.drawioLibraries);

var message =
response.error
Expand Down

0 comments on commit e308dfe

Please sign in to comment.