(text)
| 166 | } |
| 167 | |
| 168 | function setPayloadUpdatedAtText(text) { |
| 169 | if (!UI.payloadUpdatedAt) return; |
| 170 | const hasText = Boolean(text); |
| 171 | UI.payloadUpdatedAt.textContent = text || ""; |
| 172 | UI.payloadUpdatedAt.hidden = !hasText; |
| 173 | if (UI.payloadUpdatedSeparator) { |
| 174 | UI.payloadUpdatedSeparator.hidden = !hasText; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | async function updatePayloadUpdatedAt(listKey = UI.listTab2?.value) { |
| 179 | if (!UI.payloadUpdatedAt) return; |
no outgoing calls
no test coverage detected