LibWeb: Fix swapped strings for auto-fill and auto-fit in GridRepeat

...serialization.
This commit is contained in:
Aliaksandr Kalenik 2025-06-17 17:15:00 +02:00 committed by Tim Ledbetter
commit b9b6927b85
Notes: github-actions[bot] 2025-06-17 16:44:15 +00:00
6 changed files with 60 additions and 60 deletions

View file

@ -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);