mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 00:21:07 +02:00
13 lines
403 B
JavaScript
13 lines
403 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
export const NAMESPACE_PICKER_SELECTORS = {
|
|
link: (link) => (link ? `[data-test-namespace-link="${link}"]` : '[data-test-namespace-link]'),
|
|
refreshList: '[data-test-refresh-namespaces]',
|
|
toggle: '[data-test-namespace-toggle]',
|
|
searchInput: 'input[type="search"]',
|
|
manageButton: '[data-test-manage-namespaces]',
|
|
};
|