This commit is contained in:
2025-08-25 14:08:47 +00:00
parent af3ab4c696
commit 3c88246e13

View File

@@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name CoreTabs // @name CoreTabs
// @namespace https://git.diasbaskara.id/diasbaskara/userscripts/ // @namespace https://git.diasbaskara.id/diasbaskara/userscripts/
// @version 0.3 // @version 0.3.1
// @description Manage your cases easily. // @description Manage your cases easily.
// @author Dias Baskara // @author Dias Baskara
// @match https://coretax.intranet.pajak.go.id/* // @match https://coretax.intranet.pajak.go.id/*
@@ -190,7 +190,7 @@
actionsContainer.append(openBtn, docsBtn, usersBtn); actionsContainer.append(openBtn, docsBtn, usersBtn);
if (caseObject.CaseTypeName && e.CaseTypeName.startsWith(REFUND_CASE_PREFIX)) { if (caseObject.CaseTypeName && caseObject.CaseTypeName.startsWith(REFUND_CASE_PREFIX)) {
const refundBtn = document.createElement('button'); const refundBtn = document.createElement('button');
refundBtn.className = 'action-btn review-refund-case'; refundBtn.className = 'action-btn review-refund-case';
refundBtn.textContent = 'Refund Review'; refundBtn.textContent = 'Refund Review';