mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Fix swapped strings for auto-fill and auto-fit in GridRepeat
...serialization.
This commit is contained in:
parent
e8e6dbcee0
commit
b9b6927b85
Notes:
github-actions[bot]
2025-06-17 16:44:15 +00:00
Author: https://github.com/kalenikaliaksandr
Commit: b9b6927b85
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5122
Reviewed-by: https://github.com/tcl3 ✅
6 changed files with 60 additions and 60 deletions
|
@ -147,10 +147,10 @@ String GridRepeat::to_string() const
|
|||
builder.append("repeat("sv);
|
||||
switch (m_type) {
|
||||
case Type::AutoFit:
|
||||
builder.append("auto-fill"sv);
|
||||
builder.append("auto-fit"sv);
|
||||
break;
|
||||
case Type::AutoFill:
|
||||
builder.append("auto-fit"sv);
|
||||
builder.append("auto-fill"sv);
|
||||
break;
|
||||
case Type::Default:
|
||||
builder.appendff("{}", m_repeat_count);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue