Skip to content

Commit

Permalink
test: Add var assignment + return
Browse files Browse the repository at this point in the history
  • Loading branch information
d3xter666 committed Oct 16, 2024
1 parent eedc8b6 commit 7d5dffb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sap.ui.define(["sap/ui/core/Control", "sap/m/library", "mycustom/lib/FancyMultiP
function (Control, library, FancyMultiPage) {
var DateTimeInputType = library.DateTimeInputType;
var FrameType = library.FrameType;
return Control.extend("sap.fancy.Text", {
var FancyText = Control.extend("sap.fancy.Text", {
metadata: {
// sap.ui.commons.FormattedTextViewControl: deprecated
interfaces: ["sap.ui.commons.FormattedTextViewControl"],
Expand Down Expand Up @@ -68,4 +68,5 @@ sap.ui.define(["sap/ui/core/Control", "sap/m/library", "mycustom/lib/FancyMultiP
},
});

return FancyText;
});

0 comments on commit 7d5dffb

Please sign in to comment.