Skip to content

Commit 53ffe8a

Browse files
committed
Change the cursor on links to dictionaries, patterns and credentials.
1 parent 92d14e8 commit 53ffe8a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dqops/src/main/frontend/src/pages/DataDictionaryConfiguration/DataDictionaryConfigurationTable.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default function DataDictionaryConfigurationTable() {
6565
<tbody>
6666
{dictionaries?.map((dictionary, index) => (
6767
<tr key={index} className="flex items-center text-sm">
68-
<td className="px-6 py-2 text-left block w-100 text-teal-500"
68+
<td className="px-6 py-2 text-left block w-100 text-teal-500 cursor-pointer"
6969
onClick={() => updateDataDictionary(dictionary.dictionary_name ?? '') }
7070
>
7171
{dictionary.dictionary_name}

dqops/src/main/frontend/src/pages/DefaultCheckPatterns/DefaultCheckPatternsTable.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export default function DefaultCheckPatternsTable({
129129
<tbody className=" border-t border-gray-100">
130130
{getPreparedPatterns().map((pattern, index) => (
131131
<tr key={index} className='text-sm'>
132-
<td className="px-4 text-teal-500" onClick={() => editPattern(type, pattern.pattern_name ?? '')}>{pattern.pattern_name}</td>
132+
<td className="px-4 text-teal-500 cursor-pointer" onClick={() => editPattern(type, pattern.pattern_name ?? '')}>{pattern.pattern_name}</td>
133133
<td className="px-4">{pattern.priority}</td>
134134
<td className="px-4">{pattern?.connection}</td>
135135
<td className="px-4">{pattern?.schema}</td>

dqops/src/main/frontend/src/pages/SharedCredentialsDetail/SharedCredentailTable.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default function SharedCredentailTable({
3838
<tbody>
3939
{sharedCredentialList?.map((credential, index) => (
4040
<tr key={index} className="flex items-center text-sm">
41-
<td className="px-6 py-2 text-left block w-100 text-teal-500"
41+
<td className="px-6 py-2 text-left block w-100 text-teal-500 cursor-pointer"
4242
onClick={() =>
4343
updateSharedCredential(credential.credential_name ?? '')
4444
}>

0 commit comments

Comments
 (0)