From f847ba57e1210a12c4cf235b71e877b92d9c006e Mon Sep 17 00:00:00 2001 From: William Braeckman Date: Wed, 11 Dec 2024 15:21:48 +0100 Subject: [PATCH] [FIX] runbot: crash with frontend_url widget --- runbot/static/src/js/fields/fields.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbot/static/src/js/fields/fields.js b/runbot/static/src/js/fields/fields.js index 6f029641..b54bc4a7 100644 --- a/runbot/static/src/js/fields/fields.js +++ b/runbot/static/src/js/fields/fields.js @@ -80,7 +80,7 @@ export class FrontendUrl extends Component { } get displayValue() { - return this.props.record.data[this.props.name] ? getFormattedValue(this.props.record, this.props.name, {}) : '' + return this.props.record.data[this.props.name] ? getFormattedValue(this.props.record, this.props.name) : '' } get route() {