pinokiod 5.0.3 → 5.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/aside +0 -0
- package/package.json +1 -1
- package/server/views/app.ejs +8 -3
package/aside
ADDED
|
File without changes
|
package/package.json
CHANGED
package/server/views/app.ejs
CHANGED
|
@@ -216,7 +216,7 @@ body.dark .appcanvas > aside {
|
|
|
216
216
|
.appcanvas > aside .menu-container {
|
|
217
217
|
display: flex;
|
|
218
218
|
flex-direction: row;
|
|
219
|
-
align-items:
|
|
219
|
+
align-items: center;
|
|
220
220
|
gap: 6px;
|
|
221
221
|
padding: 0;
|
|
222
222
|
overflow-x: auto;
|
|
@@ -7484,9 +7484,12 @@ const rerenderMenuSection = (container, html) => {
|
|
|
7484
7484
|
fileItemsArray.forEach(item => {
|
|
7485
7485
|
item.addEventListener('click', async (event) => {
|
|
7486
7486
|
const targetIsCheckbox = event.target && event.target.hasAttribute && event.target.hasAttribute('data-file-checkbox')
|
|
7487
|
+
if (!targetIsCheckbox) {
|
|
7488
|
+
event.preventDefault()
|
|
7489
|
+
event.stopPropagation()
|
|
7490
|
+
}
|
|
7487
7491
|
const index = Number(item.getAttribute('data-index') || '-1')
|
|
7488
7492
|
if (!targetIsCheckbox) {
|
|
7489
|
-
// Preview only
|
|
7490
7493
|
lastSelectedIndex = index
|
|
7491
7494
|
await renderFileDiff(item)
|
|
7492
7495
|
return
|
|
@@ -8035,7 +8038,9 @@ const rerenderMenuSection = (container, html) => {
|
|
|
8035
8038
|
}
|
|
8036
8039
|
|
|
8037
8040
|
fileItems.forEach(item => {
|
|
8038
|
-
item.addEventListener('click', async () => {
|
|
8041
|
+
item.addEventListener('click', async (event) => {
|
|
8042
|
+
event.preventDefault()
|
|
8043
|
+
event.stopPropagation()
|
|
8039
8044
|
// Remove active class from all items
|
|
8040
8045
|
fileItems.forEach(i => i.classList.remove('pinokio-active-file-item'))
|
|
8041
8046
|
// Add active class to clicked item
|