other scenario fixed
This commit is contained in:
7
public/akaunting-js/generalAction.js
vendored
7
public/akaunting-js/generalAction.js
vendored
@@ -28,7 +28,12 @@ document.querySelectorAll("[data-table-body]").forEach((table) => {
|
||||
for (let i = first_selector; i < td.length - 1; i++) {
|
||||
let td_item = td[i];
|
||||
|
||||
td_item.addEventListener("click", () => {
|
||||
td_item.addEventListener("click", (event) => {
|
||||
// click disabled when preview dialog is open
|
||||
if (event.target.closest('[data-tooltip-target]')) {
|
||||
return;
|
||||
}
|
||||
// click disabled when preview dialog is open
|
||||
window.location.href = row_href;
|
||||
});
|
||||
|
||||
|
||||
5
public/css/app.css
vendored
5
public/css/app.css
vendored
@@ -57052,6 +57052,11 @@ body{
|
||||
line-height: 2.75rem;
|
||||
}
|
||||
|
||||
.sm\:text-purple{
|
||||
--tw-text-opacity: 1;
|
||||
color: rgb(85 88 139 / var(--tw-text-opacity));
|
||||
}
|
||||
|
||||
[dir="ltr"] .sm\:ltr\:right-4{
|
||||
right: 1rem;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user