mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:47:46 +00:00
Browser: Reorder storage inspector columns
Show "domain" and "path" as the first two columns. Since we're showing all cookies for all domains and all paths, you will probably want to see the domain and path before the actual cookie name and value.
This commit is contained in:
parent
68ee193464
commit
62fbf282b1
2 changed files with 10 additions and 10 deletions
|
@ -17,10 +17,10 @@ namespace Browser {
|
|||
class CookiesModel final : public GUI::Model {
|
||||
public:
|
||||
enum Column {
|
||||
Name,
|
||||
Value,
|
||||
Domain,
|
||||
Path,
|
||||
Name,
|
||||
Value,
|
||||
ExpiryTime,
|
||||
__Count,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue