A fix!
Go to Plugins > Editor. Select “Google Analytics by Yoast” and edit the file google-analytics-for-wordpress/admin/class-admin.php
Change line 88:
$value = strip_tags( $value );
With this:
$value = strip_tags( (string) $value );
(is not the best solution, but works for me)