view client/src/components/importschedule/importtypes/Availablefairwaydepth.vue @ 2603:8d767359fddb

Improve tolerance input Mention unit in field header and prevent input of negative values.
author Tom Gottfried <tom@intevation.de>
date Tue, 12 Mar 2019 16:16:43 +0100
parents dfa4db82e784
children
line wrap: on
line source

<template>
  <div>
    <div class="d-flex flex-row">
      <div class="flex-column mt-3 mr-3 w-100">
        <div class="flex-row text-left">
          <small class="text-muted"> <translate>URL</translate> </small>
        </div>
        <div class="w-100">
          <input
            @input="urlChanged"
            class="url form-control"
            type="url"
            :value="url"
          />
        </div>
      </div>
    </div>
    <div v-if="!url" class="d-flex flex-row">
      <small
        ><translate class="text-danger">Please enter a URL</translate></small
      >
    </div>
  </div>
</template>

<script>
/* This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 */
export default {
  name: "availablefairwaydepth",
  props: ["url"],
  methods: {
    urlChanged(e) {
      this.$emit("urlChanged", e.target.value);
    }
  }
};
</script>

<style></style>