Rename tag selector JSX files
Might as well stick to camel case for filenames
This commit is contained in:
parent
b3d185c0ae
commit
046637d76b
6 changed files with 5 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
const React = require('react');
|
||||
const PropTypes = require('prop-types');
|
||||
const TagList = require('./tag-selector/tag-list');
|
||||
const TagList = require('./tagSelector/tagSelectorList');
|
||||
const { Button } = require('./button');
|
||||
const { IconTagSelectorMenu } = require('./icons');
|
||||
const Search = require('./search');
|
|
@ -29,5 +29,5 @@
|
|||
<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
<script src="chrome://zotero/content/include.js"></script>
|
||||
|
||||
<script src="tagSelector.js"></script>
|
||||
<script src="tagSelectorContainer.js"></script>
|
||||
</overlay>
|
|
@ -7,7 +7,7 @@ const React = require('react');
|
|||
const ReactDOM = require('react-dom');
|
||||
const PropTypes = require('prop-types');
|
||||
const { IntlProvider } = require('react-intl');
|
||||
const TagSelector = require('components/tag-selector.js');
|
||||
const TagSelector = require('components/tagSelector.js');
|
||||
const defaults = {
|
||||
tagColors: new Map(),
|
||||
tags: [],
|
|
@ -23,4 +23,4 @@
|
|||
@import "components/button";
|
||||
@import "components/icons";
|
||||
@import "components/search";
|
||||
@import "components/tag-selector";
|
||||
@import "components/tagSelector";
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: pre;
|
||||
padding: 1px 4px 3px; // See also tag-list.jsx
|
||||
padding: 1px 4px 3px; // See also TagSelectorList.jsx
|
||||
|
||||
&.colored {
|
||||
font-weight: bold;
|
Loading…
Reference in a new issue