Specify tag support in messaging

This commit is contained in:
Cohee
2025-04-30 22:56:35 +03:00
parent 9cff3861b4
commit ef59afcec1

View File

@ -1520,9 +1520,9 @@ export async function openThirdPartyExtensionMenu(suggestUrl = '') {
/** @type {import('./popup.js').CustomPopupInput} */ /** @type {import('./popup.js').CustomPopupInput} */
const branchNameInput = { const branchNameInput = {
id: 'extension_branch_name', id: 'extension_branch_name',
label: t`Branch name (optional)`, label: t`Branch or tag name (optional)`,
type: 'text', type: 'text',
tooltip: 'e.g. main, master, dev', tooltip: 'e.g. main, dev, v1.0.0',
}; };
const customButtons = isCurrentUserAdmin ? [installForAllButton] : []; const customButtons = isCurrentUserAdmin ? [installForAllButton] : [];