Skip to content

Commit 278f90a

Browse files
committed
소스 정리 및 코맨트 탭 삭제 이미지 툴팁 위치 변경 및 이미지 수정
1 parent 7b249db commit 278f90a

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

server/src/main/java/com/cloud/server/ManagementServerImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5937,7 +5937,7 @@ private LicenseCheckerResponse checkLicense(HostVO host) {
59375937
// "License error for host " + host.getName(),
59385938
// "License check failed: " + errorMessage
59395939
// );
5940-
} else {
5940+
} else {
59415941
boolean isExpired = jsonNode.get("expiry_date").asBoolean();
59425942
boolean isIssued = jsonNode.get("issued_date").asBoolean();
59435943
String expiryDateStr = jsonNode.get("expired").asText();
@@ -5987,7 +5987,7 @@ private LicenseCheckerResponse checkLicense(HostVO host) {
59875987
connection.disconnect();
59885988
}
59895989
}
5990-
return response;
5990+
return response;
59915991
} catch (Exception e) {
59925992
logger.error("Error checking license for host: " + host.getId(), e);
59935993
throw new CloudRuntimeException("라이선스 체크 실패: " + e.getMessage());

ui/src/components/view/AnnotationsTab.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
</template>
4242
<template #actions>
4343
<a-popconfirm
44+
placement="topLeft"
4445
:title="this.$localStorage.get('LOCALE') == 'ko_KR' ?
4546
(item.adminsonly ? $t('label.annotation.everyone') : $t('label.adminsonly')) + $t('label.make') + '?' :
4647
$t('label.make') + ' ' + (item.adminsonly ? $t('label.annotation.everyone') : $t('label.adminsonly')) + '?'"
@@ -61,13 +62,14 @@
6162
</a-comment>
6263
<template #actions>
6364
<a-popconfirm
64-
:title="$t('label.remove.annotation')"
65+
placement="topRight"
66+
:title="$t('message.remove.annotation')"
6567
v-if="'removeAnnotation' in $store.getters.apis && isAdminOrAnnotationOwner(item)"
6668
key="visibility"
6769
@confirm="deleteNote(item)"
6870
:okText="$t('label.yes')"
6971
:cancelText="$t('label.no')" >
70-
<delete-two-tone shape="circle" two-tone-color="#eb2f96" />
72+
<a-button type="primary" shape="circle" danger><template #icon><delete-outlined /></template></a-button>
7173
</a-popconfirm>
7274
</template>
7375
</a-list-item>

ui/src/components/view/DetailsTab.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,6 @@ export default {
427427
fetchDetails () {
428428
let details = this.$route.meta.details
429429
430-
console.log('details :>> ', details)
431430
if (!details) {
432431
return
433432
}

0 commit comments

Comments
 (0)