g3w-suite / g3w-admin

Server module for G3W-SUITE
https://g3w-suite.readthedocs.io/en/latest/g3wsuite_administration.html
Mozilla Public License 2.0
39 stars 31 forks source link

Fix `usecompleter` value in /vector/api/confgi #786

Closed wlorenzetti closed 3 months ago

wlorenzetti commented 3 months ago

Closes: #785

wlorenzetti commented 3 months ago

@volterra79 this fix the usecompleter value.

wlorenzetti commented 3 months ago

@volterra79 I just make a test, the auto completation is active and works fine, but the pick from layer feature not working, if usercompleter is true

pick

volterra79 commented 3 months ago

@volterra79 I just make a test, the auto completation is active and works fine, but the pick from layer feature not working, if usercompleter is true

pick

@wlorenzetti i'll check

volterra79 commented 3 months ago

@volterra79 I just make a test, the auto completation is active and works fine, but the pick from layer feature not working, if usercompleter is true pick

@wlorenzetti i'll check

@wlorenzetti fixed with https://github.com/g3w-suite/g3w-client/pull/600/commits/1078ff7b293e0a540110da4bfc79ddc95eaa938f

github-actions[bot] commented 3 months ago

The backport to v.3.7.x failed:

The process '/usr/bin/git' failed with exit code 1

To backport manually, run these commands in your terminal:

# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-v.3.7.x v.3.7.x
# Navigate to the new working tree
cd .worktrees/backport-v.3.7.x
# Create a new branch
git switch --create backport-786-to-v.3.7.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 f10cfc4b37e4fef24771db5c9bb6dd6bbae69ebf
# Push it to GitHub
git push --set-upstream origin backport-786-to-v.3.7.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-v.3.7.x

Then, create a pull request where the base branch is v.3.7.x and the compare/head branch is backport-786-to-v.3.7.x.