浏览代码

#458 fix kwargs in ui.notify

Falko Schindler 2 年之前
父节点
当前提交
64d9e7dbb2
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      nicegui/functions/notify.py

+ 1 - 0
nicegui/functions/notify.py

@@ -24,4 +24,5 @@ def notify(message: Any, *,
     """
     options = {key: value for key, value in locals().items() if not key.startswith('_') and value is not None}
     options['message'] = str(message)
+    options.update(kwargs)
     outbox.enqueue_message('notify', options, globals.get_client().id)