mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
Inspector: Stringify remote property values
This prevents us from asserting if the remote sends us a property made up of an array or object.
This commit is contained in:
parent
8bbec97824
commit
ecc39678f5
Notes:
sideshowbarker
2024-07-19 08:54:21 +09:00
Author: https://github.com/awesomekling
Commit: ecc39678f5
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ GUI::Variant RemoteObjectPropertyModel::data(const GUI::ModelIndex& index, Role
|
|||
case Column::Name:
|
||||
return property.name;
|
||||
case Column::Value:
|
||||
return property.value;
|
||||
return property.value.to_string();
|
||||
}
|
||||
}
|
||||
return {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue