mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-04 23:40:48 +00:00
feat(desktop): show skill issue when snapshotting is off (#16432)
This commit is contained in:
parent
4c7fe60493
commit
1a9af8acb6
3 changed files with 11 additions and 3 deletions
|
|
@ -495,8 +495,9 @@ export default function Page() {
|
|||
})
|
||||
const reviewEmptyKey = createMemo(() => {
|
||||
const project = sync.project
|
||||
if (!project || project.vcs) return "session.review.empty"
|
||||
return "session.review.noVcs"
|
||||
if (project && !project.vcs) return "session.review.noVcs"
|
||||
if (sync.data.config.snapshot === false) return "session.review.noSnapshot"
|
||||
return "session.review.empty"
|
||||
})
|
||||
|
||||
function upsert(next: Project) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue