Skip to content

Commit 4d81d51

Browse files
committed
fix numpad title
1 parent 658b785 commit 4d81d51

3 files changed

Lines changed: 21 additions & 15 deletions

File tree

domain.code-workspace

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"editor.inlayHints.enabled": "offUnlessPressed",
6060
"editor.insertSpaces": true,
6161
"editor.linkedEditing": true,
62-
"editor.minimap.enabled": false,
62+
"editor.minimap.enabled": true,
6363
"editor.minimap.renderCharacters": false,
6464
"editor.minimap.size": "fill",
6565
"editor.multiCursorModifier": "alt",
@@ -72,9 +72,9 @@
7272
"javascript": "javascriptreact"
7373
},
7474
"eslint.options": {
75-
"extensions": [".js", ".jsx", ".md", ".mdx", ".ts", ".tsx", ".astro"]
75+
"extensions": [ ".js", ".jsx", ".md", ".mdx", ".ts", ".tsx", ".astro" ]
7676
},
77-
"eslint.validate": ["mdx", "markdown", "javascript", "javascriptreact", "typescript", "typescriptreact", "astro"],
77+
"eslint.validate": [ "mdx", "markdown", "javascript", "javascriptreact", "typescript", "typescriptreact", "astro" ],
7878
"explorer.compactFolders": false,
7979
"explorer.confirmDelete": false,
8080
"explorer.confirmDragAndDrop": false,
@@ -111,7 +111,7 @@
111111
},
112112
"git.autofetch": true,
113113
"git.branchPrefix": "feature/",
114-
"git.branchProtection": ["develop", "main"],
114+
"git.branchProtection": [ "develop", "main" ],
115115
"git.branchRandomName.enable": true,
116116
"git.confirmSync": false,
117117
"git.enableCommitSigning": false,
@@ -122,7 +122,7 @@
122122
"js/ts.implicitProjectConfig.checkJs": true,
123123
"peacock.affectSideBarBorder": true,
124124
"peacock.color": "#010010",
125-
"prettier.documentSelectors": ["**/*.astro"],
125+
"prettier.documentSelectors": [ "**/*.astro" ],
126126
"prettier.printWidth": 120,
127127
"prettier.quoteProps": "consistent",
128128
"prettier.singleQuote": false,
@@ -148,7 +148,13 @@
148148
"*.log": "default"
149149
},
150150
"zenMode.centerLayout": false,
151-
"cSpell.words": ["Boisu", "Poorna", "Socie", "withastro"],
151+
"cSpell.words": [
152+
"Boisu",
153+
"brandvault",
154+
"Poorna",
155+
"Socie",
156+
"withastro"
157+
],
152158
"workbench.editor.limit.excludeDirty": true,
153159
"workbench.colorCustomizations": {
154160
"activityBar.activeBackground": "#040043",
@@ -171,6 +177,6 @@
171177
"titleBar.inactiveForeground": "#e7e7e799",
172178
"tab.activeBorder": "#040043"
173179
},
174-
"folder-color.pathColors": []
180+
"folder-color.pathColors": [ ]
175181
}
176182
}

src/pages/brand.astro

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -575,13 +575,13 @@ import tagColors from "@/data/tagColors.json";
575575
});
576576

577577
// ===== DELETE =====
578-
function deleteBrand(idx) {
579-
if (confirm(`Delete "${brands[idx].name}"?`)) {
580-
brands.splice(idx, 1);
581-
save();
582-
renderCards();
583-
}
584-
}
578+
//function deleteBrand(idx) {
579+
// if (confirm(`Delete "${brands[idx].name}"?`)) {
580+
// brands.splice(idx, 1);
581+
// save();
582+
// renderCards();
583+
// }
584+
//}
585585

586586
// ===== SEARCH =====
587587
const searchInput = document.getElementById("searchInput");

src/pages/numpad.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "@/assets/styles/numpad.css";
55

66
<BaseLayout meta={{ title: "NumPad" }}>
77
<div class="numpad-container">
8-
<h2>NumPad Timeline</h2>
8+
<h1 class="text-foreground m-2 text-center text-3xl font-bold tracking-tight">NumPad Timeline</h1>
99

1010
<div class="input-box">
1111
<input id="input" placeholder="Enter value..." maxlength="16" />

0 commit comments

Comments
 (0)