code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/src/scripts/update-guild-leaderboards.js b/src/scripts/update-guild-leaderboards.js @@ -37,6 +37,11 @@ async function main(){ .map(a => a.uuid); for(const key of keys){ + const options = constants.leaderboard(key); + + if(options.mappedBy != 'uuid') + continue; + const scores = []; const memberScores = awa...
8
diff --git a/src/js/components/TextInput/stories/typescript/CustomSuggestions.tsx b/src/js/components/TextInput/stories/typescript/CustomSuggestions.tsx @@ -74,10 +74,31 @@ const folks = [ }, ]; +const formatSuggestions = (suggestedFolks, value) => + suggestedFolks + .filter(({ name }) => name.toLowerCase().indexOf(val...
7
diff --git a/src/core/operations/CRC8Checksum.mjs b/src/core/operations/CRC8Checksum.mjs */ import Operation from "../Operation"; -import OperationError from "../errors/OperationError"; /** * CRC-8 Checksum operation @@ -25,19 +24,36 @@ class CRC8Checksum extends Operation { this.inputType = "ArrayBuffer"; this.outputT...
0
diff --git a/shaders.js b/shaders.js @@ -674,6 +674,173 @@ const buildMaterial = new THREE.ShaderMaterial({ // polygonOffsetUnits: 1, }); +const damageMaterial = new THREE.ShaderMaterial({ + uniforms: { + uTime: { + type: 'f', + value: 0, + needsUpdate: true, + }, + }, + vertexShader: `\ + precision highp float; + prec...
0
diff --git a/protocols/indexer/contracts/Indexer.sol b/protocols/indexer/contracts/Indexer.sol @@ -41,8 +41,7 @@ contract Indexer is IIndexer, Ownable { mapping (address => uint256) public blacklist; // The whitelist contract for checking whether a peer is whitelisted - IWhitelist whitelist; - bool hasWhitelist; + addr...
2
diff --git a/docs/README.md b/docs/README.md ## Product introduction -1. [Site Kit goals and features](./Product-Introduction-Site-Kit-goals-and-features.md) (TODO) -2. [The modules of Site Kit](./Product-Introduction-The-modules-of-Site-Kit.md) (TODO) -3. [How Site Kit is integrated in WordPress](./Product-Introductio...
2
diff --git a/src/components/common/view/WavesBackground.native.js b/src/components/common/view/WavesBackground.native.js -import React, { Fragment } from 'react' +import React, { Fragment, useMemo } from 'react' import { StyleSheet, View } from 'react-native' import WavesSVG from '../../../assets/wave50.svg' export def...
0
diff --git a/Dockerfile b/Dockerfile @@ -14,8 +14,6 @@ COPY docker/webpagereplay/LICENSE /webpagereplay/ RUN sudo apt-get update && sudo apt-get install libnss3-tools \ net-tools \ - # temporary fix for https://github.com/lovell/sharp/issues/1882 - libvips-dev \ iproute2 -y && \ mkdir -p $HOME/.pki/nssdb && \ certutil ...
13
diff --git a/docs/src/pages/vue-components/menu.md b/docs/src/pages/vue-components/menu.md @@ -8,7 +8,7 @@ components: - menu/MenuPositioning --- -The QMenu component is a convenient way to show menus. Goes very well with [QList](/vue-components/lists-and-list-items) as dropdown content, but it's by no means limited to...
1
diff --git a/index.js b/index.js @@ -20,11 +20,13 @@ const unfurl = require('./lib/unfurl'); module.exports = (robot) => { robot.on('issues.opened', issueOpened); - robot.on('issues.labeled', matchMetaDataStatetoIssueMessage); - robot.on('issues.unlabeled', matchMetaDataStatetoIssueMessage); - robot.on('issues.assigned...
7
diff --git a/src/trumbowyg.js b/src/trumbowyg.js @@ -1208,16 +1208,17 @@ Object.defineProperty(jQuery.trumbowyg, 'defaultOptions', { t.$ed.find('p:empty').remove(); } - if (!keepRange) { + /*if (!keepRange) { t.restoreRange(); - } + }*/ t.syncTextarea(); } }, - semanticTag: function (oldTag, copyAttributes) { - var new...
11
diff --git a/lib/group/getLogo.js b/lib/group/getLogo.js @@ -10,13 +10,13 @@ exports.required = ['group'] // Define function getLogo (group) { var httpOpt = { - url: '//www.roblox.com/groups/group.aspx?gid=' + group + url: '//api.roblox.com/groups/' + group } return http(httpOpt) - .then(function (body) { - var $ = par...
4
diff --git a/src/components/Ammo.jsx b/src/components/Ammo.jsx @@ -16,6 +16,7 @@ const styles = { }; const MAX_DAMAGE = 200; +const MAX_PENETRATION = 70; const formattedData = rawData.data.map((ammoData) => { const returnData = { @@ -27,6 +28,11 @@ const formattedData = rawData.data.map((ammoData) => { returnData.damag...
9
diff --git a/app.js b/app.js @@ -16,6 +16,16 @@ if (!semver.satisfies(nodejsVersion, '>=6.9.0')) { process.exit(1); } +// See https://github.com/CartoDB/support/issues/984 +// CartoCSS properties text-wrap-width/text-wrap-character not working +// This function should be called as soon as possible. +function setICUEnvV...
12
diff --git a/articles/client-auth/v2/mobile-desktop.md b/articles/client-auth/v2/mobile-desktop.md @@ -188,15 +188,7 @@ https://${account.namespace}/authorize? redirect_uri=${account.namespace}/mobile ``` -Request Parameters: - -* `audience`: The unique identifier of the target API. Use the __Identifier__ value in [API...
2
diff --git a/util.js b/util.js @@ -3,6 +3,7 @@ import * as BufferGeometryUtils from 'three/examples/jsm/utils/BufferGeometryUti // import atlaspack from './atlaspack.js'; import { getAddressFromMnemonic } from './blockchain.js'; import {playersMapName, tokensHost, storageHost, accountsHost, loginEndpoint, audioTimeoutT...
0
diff --git a/backup.js b/backup.js @@ -79,7 +79,9 @@ function bangleUpload() { .then(() => file.async("string")) .then(data => { console.log("decoded", path); - if (path.startsWith(BACKUP_STORAGEFILE_DIR)) { + if (data.length==0) { // https://github.com/espruino/BangleApps/issues/1593 + console.log("Can't restore files...
8
diff --git a/scoper.inc.php b/scoper.inc.php @@ -13,10 +13,6 @@ use Isolated\Symfony\Component\Finder\Finder; // Google API services to include classes for. $google_services = implode( '|', - array_map( - function( $service ) { - return preg_quote( $service, '#' ); - }, array( 'Analytics', 'AnalyticsReporting', @@ -27,...
2
diff --git a/client/index.html b/client/index.html while (left < right && columnBlank(imageData, width, left, top, bottom))++left; while (right - 1 > left && columnBlank(imageData, width, right - 1, top, bottom))--right; + try { var trimmed = ctx.getImageData(left, top, right - left, bottom - top); var copy = canvas.ow...
9
diff --git a/packages/gatsby-cli/src/init-starter.js b/packages/gatsby-cli/src/init-starter.js @@ -82,7 +82,7 @@ const clone = async (hostInfo: any, rootPath: string) => { url = hostInfo.ssh({ noCommittish: true }) // Otherwise default to normal git syntax. } else { - url = hostInfo.git({ noCommittish: true }) + url = ...
4
diff --git a/iris/loaders/create-loader.js b/iris/loaders/create-loader.js @@ -13,12 +13,19 @@ type CreateLoaderOptionalOptions = {| cacheExpiryTime?: number, |}; -const TWO_HUNDRED_AND_FIFTY_MEGABYTE = 2.5e8; +const ONE_GIGABYTE = 1e9; +const SEVEN_HUNDRED_AND_FIFTY_MEGABYTE = 7.5e8; -let caches: Map<Function, LRU<str...
4
diff --git a/packages/lib/src/settings/options/index.js b/packages/lib/src/settings/options/index.js @@ -109,6 +109,7 @@ export default { itemClick, behaviourParams_item_clickAction, imageMargin, + [optionsMap.layoutParams.structure.itemSpacing]: imageMargin, hoveringBehaviour, enableInfiniteScroll, [optionsMap.behavio...
4
diff --git a/templates/indicators/add_indicator_modal.html b/templates/indicators/add_indicator_modal.html .addClass('has-error'); } }); + + // show the modal if project modal is set to true + const url = new URL(window.location.href); + if (url.searchParams.get('quick-modal')) { + $('#addIndicatorModal').modal('show')...
0
diff --git a/scenes/shadows.scn b/scenes/shadows.scn } } }, + { + "type": "application/quest", + "content": { + "name": "Reaver slay", + "description": "Destroy all reavers in the area", + "condition": "clearMobs", + "drops": [ + { + "name": "Silk", + "quantity": 20, + "start_url": "../metaverse_modules/silk/" + } + ] ...
0
diff --git a/app/shared/containers/Welcome/Key.js b/app/shared/containers/Welcome/Key.js @@ -101,8 +101,9 @@ class WelcomeKeyContainer extends Component<Props> { // Set this wallet as the used wallet useWallet(connection.chainId, settings.account, authorization); // Initialize the wallet setting - setSetting('walletIni...
12
diff --git a/packages/base-shell/cra-template-base/template.json b/packages/base-shell/cra-template-base/template.json "react": "16.x", "react-dom": "16.x", "react-intl": "4.x", - "react-redux": "7.x", "react-router-dom": "5.x", - "redux": "4.x", - "redux-logger": "3.x", - "redux-persist": "6.x", - "redux-thunk": "2.x"...
2
diff --git a/src/lib/wallet/GoodWallet.js b/src/lib/wallet/GoodWallet.js @@ -289,7 +289,7 @@ export class GoodWallet { const events = await contract.getPastEvents('allEvents', { fromBlock, toBlock }) const res1 = filterFunc(events, { event }) const res = filterFunc(res1, { returnValues: { ...filterPred } }) - log.debug...
0
diff --git a/definitions/npm/@storybook/addon-actions_v3.x.x/flow_v0.25.x-/addon-actions_v3.x.x.js b/definitions/npm/@storybook/addon-actions_v3.x.x/flow_v0.25.x-/addon-actions_v3.x.x.js declare module '@storybook/addon-actions' { - declare type Action = (name: string) => Function; + declare type Action = (name: string...
7
diff --git a/src/pages/docs/release-notes.hbs b/src/pages/docs/release-notes.hbs @@ -13,6 +13,13 @@ title: Spark Releases </div> <div class="drizzle-o-ContentGrouping"> <ul class="drizzle-b-List drizzle-b-List--spacing-m"> + <li> + <a class="drizzle-b-Link" href="https://github.com/sparkdesignsystem/spark-design-system...
3
diff --git a/src/patterns/components/footer/react/info/footer.hbs b/src/patterns/components/footer/react/info/footer.hbs This object should have a key of heading (to be used as the global section heading) and an items array of objects. The items array objects should have keys of mediaType, src, - mediaHref, altText, me...
3
diff --git a/pkg/endpoints/cluster.go b/pkg/endpoints/cluster.go @@ -35,7 +35,7 @@ func (r Resource) getAllNamespaces(request *restful.Request, response *restful.R } func (r Resource) getAllServiceAccounts(request *restful.Request, response *restful.Response) { - requestNamespace := request.PathParameter("namespace") +...
1
diff --git a/src/lib/loader/NodeJs.js b/src/lib/loader/NodeJs.js prefer-destructuring, vars-on-top, */ -// TODO: This file was created by bulk-decaffeinate. -// Fix any style issues and re-enable lint. -/* - * decaffeinate suggestions: - * DS101: Remove unnecessary use of Array.from - * DS102: Remove unnecessary code c...
2
diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml @@ -3,6 +3,7 @@ on: pull_request permissions: contents: write + pull-requests: write jobs: dependabot: @@ -18,6 +19,7 @@ jobs: if: | (contains(steps.metadata.outputs.dependency-names, 'github.com/stripe/stripe-go/v72') || contains(steps.meta...
0
diff --git a/package-lock.json b/package-lock.json "integrity": "sha512-zmEFV8WBRsW+mPQumO1/4b34QNALBVReaiHJOkxhUsdo/AvYM62c+SKSuLi2aZ42t3ocK6OI0uwUXRvrIbREZw==", "dev": true, "dependencies": { + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents", "chokidar": "^3.4.0", "commander": "^4.0.1", "convert-source-map": "^1.1....
13
diff --git a/src/plugins/Informer.js b/src/plugins/Informer.js @@ -57,6 +57,7 @@ module.exports = class Informer extends Plugin { aria-hidden={isHidden}> <p role="alert"> {message} + {' '} {details && <span style={{ color: this.opts.typeColors[type].bg }} data-balloon={details} data-balloon-pos="up"
0
diff --git a/packages/app/src/components/SubscribeButton.tsx b/packages/app/src/components/SubscribeButton.tsx @@ -36,21 +36,21 @@ const SubscribeButton: FC<Props> = (props: Props) => { ); } - let isSubscribing; + let isSubscribed; switch (subscriptionData.status) { case true: - isSubscribing = true; + isSubscribed = t...
10
diff --git a/src/tagui b/src/tagui #!/bin/bash # SCRIPT FOR RUNNING TA.GUI FRAMEWORK ~ TEBEL.ORG # +# set local path to casperjs and environment path to phantomjs +CASPERJS_EXECUTABLE="/usr/local/bin/casperjs" +export PHANTOMJS_EXECUTABLE="/usr/local/bin/phantomjs" + # check firefox parameter to run on visible firefox ...
12
diff --git a/README.md b/README.md @@ -19,7 +19,7 @@ The Auth0 Deploy CLI is a tool that helps you manage your Auth0 tenant configura - [Configuring the Deploy CLI](docs/configuring-the-deploy-cli.md) - [Keyword Replacement](docs/keyword-replacement.md) - [Incorporating Into Multi-environment Workflows](docs/multi-envi...
10
diff --git a/templates/examples/extensions/py_lambda_hooks/CanvasHook/CanvasHook.py b/templates/examples/extensions/py_lambda_hooks/CanvasHook/CanvasHook.py @@ -17,7 +17,7 @@ import canvasapi from canvasapi import Canvas -MATCHING_TOLERANCE_SCORE = 70 +MATCHING_TOLERANCE_SCORE = 70 #used for matching accuracy with fuzz...
3
diff --git a/src/services/app.js b/src/services/app.js @@ -1524,6 +1524,7 @@ export async function addVolume( volume_name: body.volume_name, volume_type: body.volume_type, volume_path: body.volume_path, + mode: body.mode, volume_capacity: new Number(body.volume_capacity), file_content: body.volume_type == 'config-file'...
1
diff --git a/src/widgets/CalendarWidget.js b/src/widgets/CalendarWidget.js @@ -123,9 +123,12 @@ export default class CalendarWidget extends InputWidget { this.setInputMask(this.calendar._input, convertFormatToMask(this.settings.format)); // Make sure we commit the value after a blur event occurs. - this.addEventListene...
7
diff --git a/docs/specs/arrange-by-tags.yaml b/docs/specs/arrange-by-tags.yaml @@ -84,6 +84,22 @@ paths: responses: '200': description: successful operation + /path-in-first-and-third-tag: + get: + summary: Path belongs to First and Third Tag + tags: + - The First Tag + - Last Tag + responses: + '200': + description: s...
7
diff --git a/src/plugins/grid.js b/src/plugins/grid.js @@ -61,7 +61,7 @@ grid.prototype.willDrawChart = function(e) { ticks = layout.yticks; ctx.save(); // draw grids for the different y axes - ticks.forEach(function (tick) { + ticks.forEach(tick => { if (!tick.has_tick) return; var axis = tick.axis; if (drawGrid[axis]...
13
diff --git a/src/App.vue b/src/App.vue @@ -45,7 +45,7 @@ export default { .ec-doc { // Reset - font-family: "Helvetica Neue", "Segoe UI", Tahoma, Arial, "Hiragino Sans GB", STHeiti, "Microsoft Yahei", "WenQuanYi Micro Hei", sans-serif; + font-family: "Source Sans Pro", "Helvetica Neue", "Segoe UI", Arial, "PingFang SC"...
7
diff --git a/public/javascripts/SVLabel/src/SVLabel/task/Task.js b/public/javascripts/SVLabel/src/SVLabel/task/Task.js @@ -152,7 +152,16 @@ function Task (geojson, tutorialTask, currentLat, currentLng, startPointReversed this._getSubsetOfCoordinates = function(fromLat, fromLng, toLat, toLng) { var startPoint = turf.poi...
1
diff --git a/src/server/create-bundle-renderer.js b/src/server/create-bundle-renderer.js @@ -37,7 +37,11 @@ export function createBundleRendererCreator (createRenderer: () => Renderer) { let basedir = rendererOptions && rendererOptions.basedir // load bundle if given filepath - if (typeof bundle === 'string' && bundle....
7
diff --git a/docker-compose.yml b/docker-compose.yml @@ -60,7 +60,7 @@ services: volumes: - ./tmp/serverless-integration-test-aws-groovy-gradle:/app aws-scala-sbt: - image: hseeberger/scala-sbt + image: hseeberger/scala-sbt:8u181_2.12.8_1.2.8 volumes: - ./tmp/serverless-integration-test-aws-scala-sbt:/app aws-csharp:
7
diff --git a/assets/js/modules/analytics/components/settings/SettingsForm.js b/assets/js/modules/analytics/components/settings/SettingsForm.js @@ -51,8 +51,6 @@ function SettingsForm() { }; } ); - global.console.log( gtmAnalyticsPropertyID, gtmAnalyticsPropertyIDPermission ); - let gtmTagNotice; if ( isValidPropertyID(...
2
diff --git a/sirepo/job_supervisor.py b/sirepo/job_supervisor.py @@ -423,9 +423,8 @@ class _ComputeJob(PKDict): @classmethod def __db_load(cls, compute_jid): - d = pkcollections.json_load_any( - cls.__db_file(compute_jid), - ) + f = cls.__db_file(compute_jid) + d = pkcollections.json_load_any(f) for k in [ 'alert', 'ca...
12
diff --git a/src/utils/wallet.js b/src/utils/wallet.js @@ -751,12 +751,7 @@ class Wallet { async setupRecoveryMessage(accountId, method, securityCode, fundingContract, fundingKey) { // temp account was set during create account const tempAccount = getTempAccount() - let securityCodeResult - if (tempAccount && tempAccou...
1
diff --git a/src/components/Form.js b/src/components/Form.js @@ -32,13 +32,13 @@ export default class extends Component { const {options, src, form} = this.props; if (src) { - this.createPromise = new Form(this.element, src, options).then(formio => { + this.createPromise = new Form(this.element, src, options).render()....
1
diff --git a/src/client/Wrapper.js b/src/client/Wrapper.js @@ -35,7 +35,6 @@ import Topnav from './components/Navigation/Topnav'; import Transfer from './wallet/Transfer'; import PowerUpOrDown from './wallet/PowerUpOrDown'; import BBackTop from './components/BBackTop'; -import EmergencyNotificationPopup from './notific...
2
diff --git a/src/components/list/list.less b/src/components/list/list.less } } &:last-child, &:last-child li:last-child { - .item-inner { + > .item-inner, + > .item-content > .item-inner, + > .item-link > .item-content > .item-inner { .hairline-remove(bottom); } }
1
diff --git a/src/components/dashboard/Dashboard.js b/src/components/dashboard/Dashboard.js @@ -204,12 +204,14 @@ const Dashboard = props => { //subscribeToFeed calls this method on mount effect without dependencies because currently we dont want it re-subscribe //so we use a global variable if (!didRender) { + log.debu...
0
diff --git a/src/docs/plugins/serverless.md b/src/docs/plugins/serverless.md @@ -259,7 +259,9 @@ permalink: #### Dynamic Slugs and Serverless Global Data -Perhaps most interestingly, this works with dynamic URLs too. This will work with any syntax supported by the [`url-pattern` package](https://www.npmjs.com/package/u...
3
diff --git a/test/utilsSpec.js b/test/utilsSpec.js @@ -177,11 +177,6 @@ describe("objectToCode", function () { describe("buildSqlModule", function () { - // For some reasons these tests have a problem on Travis CI under Node.js 0.12, - // while locally they all work just fine. It is a Travis CI issue. - - if (process.v...
1
diff --git a/doc/api-reference.md b/doc/api-reference.md @@ -81,11 +81,11 @@ Edit the current input string, replacing the characters between `startIdx` and ` <b><pre class="api">m.match(optStartRule?: string) &rarr; MatchResult</pre></b> -Like <a href="Grammar.match">Grammar's `match` method</a>, but operates increment...
1
diff --git a/packages/cx/src/widgets/overlay/Window.js b/packages/cx/src/widgets/overlay/Window.js @@ -48,13 +48,16 @@ export class Window extends Overlay { } exploreCleanup(context, instance) { + super.exploreCleanup(context, instance); + let {helpers} = instance; - if (helpers) { - if (helpers.header) - helpers.heade...
1
diff --git a/app/controllers/carto/api/paged_searcher.rb b/app/controllers/carto/api/paged_searcher.rb @@ -16,13 +16,14 @@ module Carto total: total_count, count: result.count, result: result, - _links: {} + _links: { + first: { href: yield(page: 1, per_page: per_page, order: order) }, + last: { href: yield(page: last_...
5
diff --git a/tests/osgDB/ReaderParser.js b/tests/osgDB/ReaderParser.js @@ -4,7 +4,7 @@ var mockup = require( 'tests/mockup/mockup' ); var ReaderParser = require( 'osgDB/readerParser' ); var Texture = require( 'osg/Texture' ); var Input = require( 'osgDB/Input' ); -var PrimitiveSet = require( 'osg/primitiveSet' ); +var ...
10
diff --git a/src/components/molecules/page-header/index.js b/src/components/molecules/page-header/index.js @@ -12,15 +12,14 @@ import Actions from './actions' const StyledPageHeader = styled.div` margin-bottom: ${spacing.large}; + ${StyledHeading[1]} { + margin: 0; + } ` const TitleGroup = styled.div` display: flex; al...
5
diff --git a/README.md b/README.md @@ -69,7 +69,7 @@ Create a super user: python manage.py createsuperuser ``` -You will use this super user to login as administrator in your local kamu application. +You will use this super user to login as administrator in your local Kamu application. Seed the database with initial du...
7
diff --git a/src/core/lib/Ip.mjs b/src/core/lib/Ip.mjs @@ -396,3 +396,13 @@ export function _genIpv6Mask(cidr) { * @private */ const _LARGE_RANGE_ERROR = "The specified range contains more than 65,536 addresses. Running this query could crash your browser. If you want to run it, select the \"Allow large queries\" optio...
3
diff --git a/src/pages/home/sidebar/ChatSwitcherView.js b/src/pages/home/sidebar/ChatSwitcherView.js @@ -240,7 +240,7 @@ class ChatSwitcherView extends React.Component { handleKeyPress(e) { let newFocusedIndex; - switch (e.key) { + switch (e.nativeEvent.key) { case 'Enter': // Pass the option to the selectRow method wh...
4
diff --git a/src/components/general/character/Emotions.jsx b/src/components/general/character/Emotions.jsx @@ -14,6 +14,28 @@ const emotions = [ 'surprise', ]; +export const setFacePoseValue = (emotion, value) => { + const localPlayer = metaversefile.useLocalPlayer(); + + const facePoseActionIndex = localPlayer.findAct...
0
diff --git a/packages/@netlify-build/src/build/main.js b/packages/@netlify-build/src/build/main.js @@ -111,44 +111,9 @@ module.exports = async function build(inputOptions = {}) { const originalConsoleLog = console.log console.log = netlifyLogs.patch(redactedKeys) - const { - build: { command: configCommand, lifecycle: ...
5
diff --git a/src/components/ImageWithAspect.js b/src/components/ImageWithAspect.js @@ -3,18 +3,22 @@ import React, { Component } from "react"; import { Image, View } from "react-native"; type Props = { - ratio: Number, - source: Image.Props.source + ratio: number, + source: Image.propTypes.source }; -class ImageWithAsp...
1
diff --git a/package.json b/package.json }, "devDependencies": { "del": "3.0.0", - "electron-packager": "14.0.6", + "electron-packager": "15.2.0", "eslint": "6.4.0", "event-stream": "3.3.4", "git-rev": "0.2.1",
3
diff --git a/docs/views/examples/pass-data/index.html b/docs/views/examples/pass-data/index.html <pre class="app-code" tabindex="0"><code>{% raw %} {{ govukCheckboxes({ + idPrefix: "vehicle-features", name: "vehicle-features", fieldset: { legend: { { value: "Heated seats", text: "Heated seats", - id: "vehicle-features-...
4
diff --git a/src/views/docs/08-translations.html b/src/views/docs/08-translations.html @@ -9,4 +9,4 @@ permalink: docs/08-translations.html {{{t 'docs.translations.content' markdown=true}}} -<p><a href="/files/swiss_web_guidelines_official_translations.xlsx" class="icon icon--before icon--doc" aria-hidden="true">{{ t '...
1
diff --git a/assets/js/components/Root/index.js b/assets/js/components/Root/index.js @@ -30,7 +30,6 @@ import FeaturesProvider from '../FeaturesProvider'; import { enabledFeatures } from '../../features'; import PermissionsModal from '../PermissionsModal'; import RestoreSnapshots from '../RestoreSnapshots'; -import Col...
2
diff --git a/client/src/containers/AssetDisplay/view.jsx b/client/src/containers/AssetDisplay/view.jsx @@ -2,6 +2,7 @@ import React from 'react'; import Row from '@components/Row'; import ProgressBar from '@components/ProgressBar'; import { LOCAL_CHECK, UNAVAILABLE, ERROR, AVAILABLE } from '../../constants/asset_displa...
4
diff --git a/docs/source/sample_policies.rst b/docs/source/sample_policies.rst @@ -35,13 +35,15 @@ send them a message explaining why. .. code-block:: python - params = {"username": action.initiator.metagovuser.external_username} + username = action.initiator.metagovuser.external_username + params = {"username": userna...
0
diff --git a/modules/xerte/parent_templates/Nottingham/models_html5/interactiveText.html b/modules/xerte/parent_templates/Nottingham/models_html5/interactiveText.html } else if (intType == "show2") { $instructions.html('<p>' + (x_currentPageXML.getAttribute("showMeTxt") != undefined ? x_currentPageXML.getAttribute("sho...
1
diff --git a/assets/js/modules/analytics/datastore/accounts.js b/assets/js/modules/analytics/datastore/accounts.js @@ -210,23 +210,12 @@ export const resolvers = { if ( ! existingAccounts ) { yield tagActions.waitForExistingTag(); const existingTag = registry.select( STORE_NAME ).getExistingTag(); - const { response, e...
2
diff --git a/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/fileupload/template.vue b/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/fileupload/template.vue @@ -66,7 +66,7 @@ export default { }, onDropFile(ev){ ev.stopPropagation() - this.isDragging = '' + this.isDragging = false...
12
diff --git a/.github/workflows/php-tests.yml b/.github/workflows/php-tests.yml @@ -21,6 +21,8 @@ jobs: image: mysql:5.7 env: MYSQL_DATABASE: wordpress + MYSQL_ROOT_PASSWORD: password + MYSQL_PASSWORD: password steps: - uses: actions/checkout@v2 - uses: shivammathur/setup-php@v2
12
diff --git a/test/scripts/box/box.js b/test/scripts/box/box.js @@ -126,7 +126,7 @@ describe('Box', () => { }).finally(() => fs.rmdir(box.base)); }); - it('process() - mtime changed', () => { + it('process() - update (mtime changed and hash changed)', () => { const box = newBox('test'); const name = 'a.txt'; const path ...
1
diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - test-name: ['boostPayment', 'botCreation', 'chatPayment', 'cleanup', 'clearAllChats', 'clearAllContacts', 'contacts', 'images', 'latestTest', 'lsats', 'paidMeet', 'pa...
0
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml @@ -27,7 +27,7 @@ jobs: - name: Set version in ENV if: ${{ success() }} - run: echo "::set-env name=VERSION::$(npm run print-version --silent)" + run: echo "VERSION=$(npm run print-version --silent)" >> $GITHUB_ENV - uses: 8398a7/action-slack@v3 name:...
4
diff --git a/src/client/components/display/BarGraph.jsx b/src/client/components/display/BarGraph.jsx @@ -105,7 +105,16 @@ const BarGraph = ({ dataPoints }) => { let urls, times, BGs, borders; if (dataPoints.length) { //extract arrays from data point properties to be used in chart data/options that take separate arrays ...
9
diff --git a/tests/matching/matching-playground.js b/tests/matching/matching-playground.js @@ -142,7 +142,7 @@ Numbas.queueScript('go',['jme','localisation','knockout'],function() { }, { description: "Complex number in argument-modulus form", - pattern: "m_exactly(($n`? `: 1)*e^(((`*/ `+-$n)`*;x)*i))", + pattern: "m_ex...
7
diff --git a/layouts/partials/components/header.html b/layouts/partials/components/header.html <nav class="section-nav"> <div class="section-nav-inner flex align-center justify-space-between"> <div class="section-nav-primary flex align-center"> - {{ if not .IsHome }} - <a href="/" class="section-logo decoration-none"> ...
1
diff --git a/docs-website/pages/plugins-cocoascript.md b/docs-website/pages/plugins-cocoascript.md --- title: CocoaScript section: plugins -chapter: Internal API +chapter: Concepts permalink: /plugins/cocoascript # Previous developer documentation @@ -73,7 +73,7 @@ let asset = AVAsset.assetWithURL_(url) console.log(ass...
5
diff --git a/articles/hooks/extensibility-points/pre-user-registration.md b/articles/hooks/extensibility-points/pre-user-registration.md @@ -5,9 +5,7 @@ beta: true # Extensibility Point: Pre-User Registration -For [Database Connections](/connections/database), the `pre-user-registration` extensibility point allows you ...
2
diff --git a/src/app.js b/src/app.js @@ -71,7 +71,7 @@ module.exports = app; // Mongo Connection + Server Start (async () => { try { - const client = await MongoClient.connect(url, { poolSize: 20 }); + const client = await MongoClient.connect(url, { poolSize: 20, useNewUrlParser: true }); global.db = client.db('spacex-...
11
diff --git a/accessibility-checker-engine/src/v4/util/CSSUtil.ts b/accessibility-checker-engine/src/v4/util/CSSUtil.ts type PseudoClass = ":hover" | ":active" | ":focus" | ":focus-visible" | ":focus-within"; export function selectorMatchesElem(element, selector) { + try { if (selector.trim() === "") return false; if (t...
3
diff --git a/src/Serverless.js b/src/Serverless.js @@ -106,11 +106,6 @@ class Serverless { } async render() { - // TODO is this necessary? - if (this.dir.startsWith("/var/task/")) { - process.chdir(this.dir); - } - let inputDir = path.join(this.dir, this.options.inputDir); let configPath = path.join(this.dir, this.conf...
2
diff --git a/entry_types/scrolled/package/src/contentElements/inlineBeforeAfter/BeforeAfter.module.css b/entry_types/scrolled/package/src/contentElements/inlineBeforeAfter/BeforeAfter.module.css } @keyframes BeforeImageLeftRightShake { - 10%, 90% { + 10%, 100% { clip: rect(auto, calc(var(--initial-rect-width) + var(--f...
14
diff --git a/src/encoded/schemas/single_cell_rna_series.json b/src/encoded/schemas/single_cell_rna_series.json "related_datasets.replicates.library.treatments.treatment_term_name": { "title": "Library treatment" }, - "month_released": { - "title": "Month released" - }, "lab.title": { "title": "Lab" },
2
diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb @@ -10,7 +10,7 @@ class HomeController < ApplicationController pipeline_info = output.pipeline_runs.first ? output.pipeline_runs.first.pipeline_output : nil job_stats = output.pipeline_outputs.first ? output.pipeline_outputs.first.job_...
9
diff --git a/javascript/package.json b/javascript/package.json { "name": "stimulus_reflex", - "version": "1.1.0", + "version": "1.0.2", "main": "./stimulus_reflex.js", "scripts": { "prettier-check": "yarn run prettier --check ./stimulus_reflex.js"
12
diff --git a/gears/carto_gears_api/lib/carto_gears_api/logger.rb b/gears/carto_gears_api/lib/carto_gears_api/logger.rb @@ -42,9 +42,14 @@ module CartoGearsApi private def log(level, exception: nil, message: nil, user: nil, **additional_data) - gear_message = "{#{@gear}}: #{message}" if message - additional = additional...
2
diff --git a/index.js b/index.js @@ -122,7 +122,7 @@ const defaults = { { long: 'sBTC', short: 'iBTC' }, { long: 'sETH', short: 'iETH' }, ], - MAX_DEBT: w3utils.toWei('30000000'), // 30 million sUSD + MAX_DEBT: w3utils.toWei('40000000'), // 40 million sUSD BASE_BORROW_RATE: Math.round((0.005 * 1e18) / 31556926).toStrin...
3
diff --git a/client/package.json b/client/package.json "dependencies": { "minimal-request": "2.2.0", "nice-cache": "0.0.5", - "oc-template-handlebars": "2.0.0", - "oc-template-jade": "2.0.0", + "oc-template-handlebars": "3.0.0", + "oc-template-jade": "3.0.0", "stringformat": "0.0.5" }, "engines": {
3
diff --git a/game.js b/game.js @@ -743,14 +743,14 @@ const _gameUpdate = (timestamp, timeDiff) => { }; _updateMouseDomEquipmentHover(); - const _handleTeleport = () => { + /* const _handleTeleport = () => { if (localPlayer.avatar) { teleportMeshes[1].update(localPlayer.avatar.inputs.leftGamepad.position, localPlayer.av...
2
diff --git a/CHANGELOG.md b/CHANGELOG.md All notable changes to this project are documented in this file. -## Head +## 13.3.0 - Added: `ignoreFontFamilies: []` to `font-family-no-missing-generic-family-keyword` ([#4656](https://github.com/stylelint/stylelint/pull/4656)). - Fixed: `function-calc-no-invalid` false positi...
6
diff --git a/lib/plugins/input/heroku.js b/lib/plugins/input/heroku.js @@ -26,6 +26,9 @@ function extractJson (line, source) { function InputHeroku (config, eventEmitter) { this.config = config this.eventEmitter = eventEmitter + if (config.useIndexFromUrlPath === undefined) { + config.useIndexFromUrlPath = true + } thi...
12
diff --git a/package.json b/package.json "name": "@11ty/eleventy", "version": "0.10.0-beta.1", "description": "Transform a directory of templates into HTML.", + "publishConfig": { + "access": "public" + }, "main": "src/Eleventy.js", "license": "MIT", "engines": { "node": ">=8" }, + "funding": { + "type": "opencollectiv...
0
diff --git a/factory-ai-vision/EdgeSolution/modules/WebModule/ui_v2/src/components/LiveViewContainer/LiveViewScene.tsx b/factory-ai-vision/EdgeSolution/modules/WebModule/ui_v2/src/components/LiveViewContainer/LiveViewScene.tsx @@ -334,8 +334,6 @@ const Polygon = ({ id, polygon, visible, removeBox, creatingState, handle...
14