Skip to content
Snippets Groups Projects
Commit c9c8de3f authored by Arie Peterson's avatar Arie Peterson
Browse files

Use npm instead of yarn

parent a4a17f59
No related branches found
No related tags found
1 merge request!182Resolve "Default user listing pagination fails sometimes"
...@@ -114,7 +114,7 @@ You need to do this once for every cluster you want to use as a development clus ...@@ -114,7 +114,7 @@ You need to do this once for every cluster you want to use as a development clus
Before running the frontend in native mode: Before running the frontend in native mode:
* Make sure you have nodejs installed. You may want to use [Node Version * Make sure you have nodejs installed. You may want to use [Node Version
Manager](https://github.com/nvm-sh/nvm) to make it easy to install several Manager](https://github.com/nvm-sh/nvm) to make it easy to install several
version side by side. versions side by side.
* Install necessary javascript dependencies (will be placed in * Install necessary javascript dependencies (will be placed in
`frontend/node_modules`) using `./dev.sh frontend setup`. `frontend/node_modules`) using `./dev.sh frontend setup`.
......
...@@ -130,7 +130,7 @@ runFrontend() { ...@@ -130,7 +130,7 @@ runFrontend() {
pushd frontend > /dev/null pushd frontend > /dev/null
echo "Stopping any previous intercept for dashboard-frontend..." echo "Stopping any previous intercept for dashboard-frontend..."
telepresence leave dashboard-frontend telepresence leave dashboard-frontend
telepresence intercept dashboard-frontend --service=dashboard --port 3000:80 --mount=true -- yarn start --watch --verbose telepresence intercept dashboard-frontend --service=dashboard --port 3000:80 --mount=true -- npm start --watch --verbose
popd > /dev/null popd > /dev/null
;; ;;
"docker") "docker")
...@@ -143,7 +143,7 @@ runFrontend() { ...@@ -143,7 +143,7 @@ runFrontend() {
setupFrontend() { setupFrontend() {
pushd frontend > /dev/null pushd frontend > /dev/null
yarn install npm install
popd > /dev/null popd > /dev/null
} }
......
...@@ -334,7 +334,7 @@ export const Users: React.FC = () => { ...@@ -334,7 +334,7 @@ export const Users: React.FC = () => {
name="email" name="email"
id="email" id="email"
className="focus:ring-primary-500 focus:border-primary-500 block w-full rounded-md pl-10 sm:text-sm border-gray-200" className="focus:ring-primary-500 focus:border-primary-500 block w-full rounded-md pl-10 sm:text-sm border-gray-200"
placeholder="Search everything..." placeholder="Search users..."
onChange={debouncedSearch} onChange={debouncedSearch}
/> />
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment