fix(general): some fixes and improvements of Play visibility (#14384)

* fix(backend): missing `visibility` param in packing flash

* fix(frontend): use `visibility` value got from API

* enhance(frontend): change preview appearance of private Play

* Update CHANGELOG.md
This commit is contained in:
zyoshoka 2024-08-10 09:34:49 +09:00 committed by GitHub
parent f50941389d
commit 01a815f8a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 110 additions and 5 deletions

View file

@ -4672,6 +4672,8 @@ export type components = {
title: string;
summary: string;
script: string;
/** @enum {string} */
visibility: 'private' | 'public';
likedCount: number | null;
isLiked?: boolean;
};