何を実現したいのかを書きましょう
kintoneのコメントのいいね以外に変更したい
発生した問題やエラーメッセージを具体的に書きましょう
表示上はjsにて変更できる
実行したコードをコピー&ペーストしましょう
(function() {
'use strict';
kintone.events.on('app.record.detail.show', function() {
setTimeout(() => {
const likeButtons = document.querySelectorAll('a.commentlist-footer-like-gaia');
likeButtons.forEach(button => {
if (button.textContent.includes('いいね')) {
button.textContent = button.textContent.replace('いいね', '確認済み');
}
});
}, 1000); // DOMが読み込まれるまで待機
});
})();