Skip to content

Commit

Permalink
make gallery icon more gallery looking
Browse files Browse the repository at this point in the history
  • Loading branch information
3vorp committed Jan 26, 2024
1 parent bb316fb commit 26a3c75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ window.colorToHex = function (color) {
return "currentcolor";
}
};
window.updatePageStyles = function (cmp) {
window.updatePageStyles = (cmp) => {
if (!cmp.$el) return;
if (!cmp.$el.id) cmp.$el.id = cmp.name;

Expand Down Expand Up @@ -62,7 +62,7 @@ window.updatePageStyles = function (cmp) {

Object.defineProperty(Object.prototype, "isObject", {
/**
* @param {*} item to be tested
* @param {any} item to be tested
* @returns {Boolean} true if the item is an JS Object
*/
value: (item) => {
Expand Down Expand Up @@ -155,7 +155,7 @@ const ALL_TABS = [
},
{
enabled: true,
icon: "mdi-texture",
icon: "mdi-image-multiple",
label: "gallery",
unlogged: true,
routes: [
Expand Down

0 comments on commit 26a3c75

Please sign in to comment.