💄 修改样式.

This commit is contained in:
lijiahang
2024-06-19 10:48:00 +08:00
parent 2919950c5b
commit 830622aafb
8 changed files with 8 additions and 5 deletions

View File

@@ -109,6 +109,7 @@ public class CommandSnippetGroupServiceImpl implements CommandSnippetGroupServic
.createWrapper()
.select(CommandSnippetDO::getUserId, CommandSnippetDO::getGroupId)
.isNotNull(CommandSnippetDO::getGroupId)
.groupBy(CommandSnippetDO::getUserId)
.groupBy(CommandSnippetDO::getGroupId)
.then()
.stream()

View File

@@ -110,6 +110,7 @@ public class PathBookmarkGroupServiceImpl implements PathBookmarkGroupService {
.select(PathBookmarkDO::getUserId, PathBookmarkDO::getGroupId)
.isNotNull(PathBookmarkDO::getGroupId)
.groupBy(PathBookmarkDO::getGroupId)
.groupBy(PathBookmarkDO::getUserId)
.then()
.stream()
.collect(Collectors.groupingBy(PathBookmarkDO::getUserId,

View File

@@ -1,5 +1,6 @@
package com.orion.visor.module.infra.controller;
import com.orion.visor.framework.log.core.annotation.IgnoreLog;
import com.orion.visor.framework.web.core.annotation.RestWrapper;
import com.orion.visor.module.infra.entity.request.preference.PreferenceUpdatePartialRequest;
import com.orion.visor.module.infra.entity.request.preference.PreferenceUpdateRequest;
@@ -56,6 +57,7 @@ public class PreferenceController {
return preferenceService.getPreferenceByType(type, items);
}
@IgnoreLog
@GetMapping("/get-default")
@Operation(summary = "查询默认偏好")
@Parameter(name = "type", description = "type", required = true)

View File

@@ -28,7 +28,7 @@ public class TerminalPreferenceStrategy extends AbstractGenericsDataStrategy<Ter
String defaultDisplaySetting = TerminalPreferenceModel.DisplaySettingModel
.builder()
.fontFamily("_")
.fontSize(13)
.fontSize(14)
.lineHeight(1.12)
.letterSpacing(0)
.fontWeight("normal")

View File

@@ -33,7 +33,7 @@ public class TagAutoClearTask {
@Scheduled(cron = "0 0 2 * * ?")
public void clear() {
log.info("TagAutoClearTask.clear start");
// 获取锁并清理
// 获取锁并执行
LockerUtils.tryLock(LOCK_KEY, tagService::clearUnusedTag);
log.info("TagAutoClearTask.clear finish");
}

View File

@@ -548,7 +548,7 @@ body[terminal-theme='dark'] .arco-modal-container {
.terminal-setting-block {
color: var(--color-content-text-2);
margin-bottom: 24px;
margin-bottom: 32px;
}
.terminal-setting-subtitle-wrapper {

View File

@@ -63,6 +63,7 @@ export const LogAppenderOptions: ITerminalOptions & ITerminalInitOnlyOptions = {
lineHeight: 1.12,
convertEol: true,
allowProposedApi: true,
fontFamily: 'Courier New, Monaco, courier, monospace',
};
// dom 引用

View File

@@ -52,8 +52,6 @@
// 确定
const handlerOk = () => {
setVisible(false);
console.log(cronExpression.value);
console.log('ok', cronExpression.value);
emits('ok', cronExpression.value);
};