Open riyuk opened 2 years ago
Currently if you add a new Page to a Database ($notion->database('id')->get()->newPage()) you cannot set the icon. If I do $page->icon = '💬'; and save that page ($page->save();) the icon will not get saved.
$notion->database('id')->get()->newPage()
$page->icon = '💬';
$page->save();
Is this planned for the future?
Currently if you add a new Page to a Database (
$notion->database('id')->get()->newPage()
) you cannot set the icon. If I do$page->icon = '💬';
and save that page ($page->save();
) the icon will not get saved.Is this planned for the future?