Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/+wt/+test/BaseWidgetTest.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
classdef BaseWidgetTest < wt.test.BaseTest
classdef (Abstract) BaseWidgetTest < wt.test.BaseTest
% Implements a unit test for a widget or component

% Copyright 2020-2025 The MathWorks Inc.
Expand Down
2 changes: 1 addition & 1 deletion widgets/+wt/+abstract/BaseViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ function onFieldEdited(obj,evt,fieldName,index)
newValue = evt.Value;

% Treat char as string
if ischar(newValue)
if ischar(newValue) || iscellstr(newValue) %#ok<ISCLSTR>
newValue = string(newValue);
end

Expand Down