Skip to content

Commit

Permalink
[maps] support null description in saved object
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed Jul 18, 2023
1 parent d538654 commit 58a6ec1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
const mapAttributesSchema = schema.object(
{
title: schema.string(),
description: schema.maybe(schema.string()),
description: schema.maybe(schema.nullable(schema.string())),
mapStateJSON: schema.maybe(schema.string()),
layerListJSON: schema.maybe(schema.string()),
uiStateJSON: schema.maybe(schema.string()),
Expand Down

0 comments on commit 58a6ec1

Please sign in to comment.