Skip to content

Commit

Permalink
Merge pull request #275 from fluent/directory-structure
Browse files Browse the repository at this point in the history
Add app/javascript/packs/components directory
  • Loading branch information
okkez authored Nov 5, 2018
2 parents c5cc064 + a39f0aa commit 5c209e5
Show file tree
Hide file tree
Showing 14 changed files with 11 additions and 11 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* global _ */
"use strict";
import "lodash/lodash";
import store from "./store";
import store from "../store";

const ConfigField = {
template: "#vue-config-field",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import "lodash/lodash";
import ParserMultilineForm from "./parser_multiline_form";
import ConfigField from "./config_field";
import store from "./store";
import store from "../store";

const ParserPluginForm = {
template: "#vue-parser-plugin-form",
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion app/javascript/packs/filter_grep_setting.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"use strict";
import "lodash/lodash";

import GrepContainer from "./grep_container";
import GrepContainer from "./components/grep_container";

window.addEventListener("load", () => {
new Vue({
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/packs/in_tail_parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import "lodash/lodash";
import "popper.js/dist/popper";
import "bootstrap/dist/js/bootstrap";
import ParserPluginForm from "./parser_plugin_form";
import ParserPluginForm from "./components/parser_plugin_form";
import store from "./store";

window.addEventListener("load", () => {
Expand Down
4 changes: 2 additions & 2 deletions app/javascript/packs/out_forward_setting.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

import TransportConfig from "./transport_config";
import OwnedPluginForm from "./owned_plugin_form";
import TransportConfig from "./components/transport_config";
import OwnedPluginForm from "./components/owned_plugin_form";

window.addEventListener("load", () => {
new Vue({
Expand Down
4 changes: 2 additions & 2 deletions app/javascript/packs/out_s3_setting.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

import OwnedPluginForm from "./owned_plugin_form";
import AwsCredential from "./aws_credential";
import OwnedPluginForm from "./components/owned_plugin_form";
import AwsCredential from "./components/aws_credential";

window.addEventListener("load", () => {
new Vue({
Expand Down
4 changes: 2 additions & 2 deletions app/javascript/packs/plugin_setting.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import "lodash/lodash";
import "popper.js/dist/popper";
import "bootstrap/dist/js/bootstrap";
import OwnedPluginForm from "./owned_plugin_form";
import ParserPluginForm from "./parser_plugin_form";
import OwnedPluginForm from "./components/owned_plugin_form";
import ParserPluginForm from "./components/parser_plugin_form";

window.addEventListener("load", () => {
new Vue({
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/packs/transport_section.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"use strict";
import "lodash/lodash";

import ConfigField from "./config_field";
import ConfigField from "./components/config_field";

window.addEventListener("load", () => {
new Vue({
Expand Down

0 comments on commit 5c209e5

Please sign in to comment.