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
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const ChangeSceneEffectType: EffectType<{
</ui-select>

<div ng-show="effect.custom === true" style="margin-top:10px;">
<firebot-input input-title="Custom Scene" model="effect.sceneName"></firebot-input>
<firebot-input input-title="Custom Scene" model="effect.sceneName" menu-position="under"></firebot-input>
</div>
</eos-container>
`,
Expand All @@ -52,7 +52,7 @@ export const ChangeSceneEffectType: EffectType<{
(scenes: string[]) => {
$scope.scenes = [];
if (scenes != null) {
scenes.forEach(scene => {
scenes.forEach((scene) => {
$scope.scenes.push({name: scene, custom: false});
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
model="$ctrl.effect.rotation"
placeholder-text="Enter rotation"
data-type="number"
menu-position="under"
/>
<dropdown-select
style="margin: 0 0 0 10px;"
Expand Down