This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<v-row class="mt-n8" v-for="(stream, index) in streams" :key="index"> | |
<v-col cols="12" lg="5" md="5" sm="12"> | |
<v-select | |
:items="shiftMetadataNames" | |
:item-text="'name'" | |
v-model="stream.shiftMetadataName" | |
:name="`streams[${index}][shiftMetadataName]`" | |
return-object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule LiveWeb.Downvote do | |
use LiveWeb, :live_component | |
alias Live.FAQs | |
@impl true | |
def update(assigns, socket) do | |
{:ok, assign(socket, assigns)} | |
end | |
@impl true |
OlderNewer