Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #14292: Tags Page UI issues #14327

Merged
merged 14 commits into from
Dec 19, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const revokeToken = () => {
// Verify the revoke text
cy.get('[data-testid="body-text"]').should(
'contain',
'Are you sure you want to revoke access for JWT token?'
'Are you sure you want to revoke access for JWT Token?'
);
interceptURL('PUT', `/api/v1/users/revokeToken`, 'revokeToken');
// Click on confirm button
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* Copyright 2023 Collate.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { Classification } from '../../generated/entity/classification/classification';
import { Tag } from '../../generated/entity/classification/tag';
import { DeleteTagsType } from '../../pages/TagsPage/TagsPage.interface';
import { OperationPermission } from '../PermissionProvider/PermissionProvider.interface';

export interface ClassificationDetailsProps {
classificationPermissions: OperationPermission;
isVersionView?: boolean;
currentClassification?: Classification;
deleteTags?: DeleteTagsType;
isEditClassification?: boolean;
isAddingTag?: boolean;
disableEditButton?: boolean;
handleAfterDeleteAction?: () => void;
handleEditTagClick?: (selectedTag: Tag) => void;
handleActionDeleteTag?: (record: Tag) => void;
handleAddNewTagClick?: () => void;
handleEditDescriptionClick?: () => void;
handleCancelEditDescription?: () => void;
handleUpdateClassification?: (
updatedClassification: Classification
) => Promise<void>;
}
export interface ClassificationDetailsRef {
refreshClassificationTags: () => void;
}
Loading
Loading