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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from zhufucdev:main #10

Merged
merged 5 commits into from
Mar 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
馃悰 Weird listing behavior
  • Loading branch information
zhufucdev committed Feb 7, 2024
commit fa760253384cc823ef51e3323b122b04a4ef3243
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ private fun SheetContent(
},
body = {
val targetList = items[store]!!
val data = targetList.toList()
val data = remember { targetList.toList() }
if (data.isNotEmpty()) {
Column(Modifier.fillMaxWidth()) {
data.forEachIndexed { index, datum ->
Expand Down Expand Up @@ -658,7 +658,8 @@ fun CellEditor(
Box(
Modifier
.padding(PaddingCommon)
.padding(paddingValues)) {
.padding(paddingValues)
) {
BasicEdit(
id = target.id,
name = target.metadata.displayName(context),
Expand Down Expand Up @@ -695,7 +696,8 @@ fun MotionEditor(
Box(
Modifier
.padding(PaddingCommon)
.padding(paddingValues)) {
.padding(paddingValues)
) {
BasicEdit(
id = target.id,
name = target.metadata.displayName(context),
Expand Down